Package org.apache.kafka.clients.admin
Class Config
- java.lang.Object
-
- org.apache.kafka.clients.admin.Config
-
-
Constructor Summary
Constructors Constructor Description Config(java.util.Collection<ConfigEntry> entries)Create a configuration instance with the provided entries.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<ConfigEntry>entries()Configuration entries for a resource.booleanequals(java.lang.Object o)ConfigEntryget(java.lang.String name)Get the configuration entry with the provided name or null if there isn't one.inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
Config
public Config(java.util.Collection<ConfigEntry> entries)
Create a configuration instance with the provided entries.
-
-
Method Detail
-
entries
public java.util.Collection<ConfigEntry> entries()
Configuration entries for a resource.
-
get
public ConfigEntry get(java.lang.String name)
Get the configuration entry with the provided name or null if there isn't one.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-