Package io.pravega.client.admin
Class KeyValueTableInfo
- java.lang.Object
-
- io.pravega.client.admin.KeyValueTableInfo
-
@Beta public class KeyValueTableInfo extends java.lang.Object
Information about a Key-Value Table.
-
-
Constructor Summary
Constructors Constructor Description KeyValueTableInfo(java.lang.String scope, java.lang.String keyValueTableName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(java.lang.Object other)
boolean
equals(java.lang.Object o)
java.lang.String
getKeyValueTableName()
Key-Value Table name.java.lang.String
getScope()
Scope name of the Key-Value Table.java.lang.String
getScopedName()
Gets a Fully Qualified Key-Value Table Name.int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getScopedName
public java.lang.String getScopedName()
Gets a Fully Qualified Key-Value Table Name.- Returns:
- The scoped Key-Value Table Name.
-
getScope
public java.lang.String getScope()
Scope name of the Key-Value Table.- Returns:
- Scope name of the Key-Value Table.
-
getKeyValueTableName
public java.lang.String getKeyValueTableName()
Key-Value Table name.- Returns:
- Key-Value Table name.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-