Package org.apache.kafka.common.resource
Class ResourcePattern
- java.lang.Object
-
- org.apache.kafka.common.resource.ResourcePattern
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
WILDCARD_RESOURCE
A special literal resource name that corresponds to 'all resources of a certain type'.
-
Constructor Summary
Constructors Constructor Description ResourcePattern(ResourceType resourceType, java.lang.String name, PatternType patternType)
Create a pattern using the supplied parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
boolean
isUnknown()
java.lang.String
name()
PatternType
patternType()
ResourceType
resourceType()
ResourcePatternFilter
toFilter()
java.lang.String
toString()
-
-
-
Field Detail
-
WILDCARD_RESOURCE
public static final java.lang.String WILDCARD_RESOURCE
A special literal resource name that corresponds to 'all resources of a certain type'.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ResourcePattern
public ResourcePattern(ResourceType resourceType, java.lang.String name, PatternType patternType)
Create a pattern using the supplied parameters.- Parameters:
resourceType
- non-null, specific, resource typename
- non-null resource name, which can be theWILDCARD_RESOURCE
.patternType
- non-null, specific, resource pattern type, which controls how the pattern will match resource names.
-
-
Method Detail
-
resourceType
public ResourceType resourceType()
- Returns:
- the specific resource type this pattern matches
-
name
public java.lang.String name()
- Returns:
- the resource name.
-
patternType
public PatternType patternType()
- Returns:
- the resource pattern type.
-
toFilter
public ResourcePatternFilter toFilter()
- Returns:
- a filter which matches only this pattern.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
isUnknown
public boolean isUnknown()
- Returns:
true
if this Resource has any UNKNOWN components.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-