Package alluxio.table.common
Class BaseProperty
- java.lang.Object
-
- alluxio.table.common.BaseProperty
-
- Direct Known Subclasses:
UdbProperty
public abstract class BaseProperty extends java.lang.ObjectThis represents a property name and default value for the UDB.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringmDefaultValueprotected java.lang.StringmDescriptionprotected java.lang.StringmName
-
Constructor Summary
Constructors Modifier Constructor Description protectedBaseProperty(java.lang.String name, java.lang.String description, java.lang.String defaultValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetDefaultValue()java.lang.StringgetDescription()java.lang.StringgetName()inthashCode()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
- Returns:
- the property name
-
getDescription
public java.lang.String getDescription()
- Returns:
- the property description
-
getDefaultValue
public java.lang.String getDefaultValue()
- Returns:
- the property default value
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-