Package uk.gov.gchq.gaffer.types
Class TypeSubTypeValue
- java.lang.Object
-
- uk.gov.gchq.gaffer.types.TypeSubTypeValue
-
- All Implemented Interfaces:
Serializable
,Comparable<TypeSubTypeValue>
public class TypeSubTypeValue extends Object implements Comparable<TypeSubTypeValue>, Serializable
ATypeSubTypeValue
is used to store information relating to types, sub-types and associated values.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TypeSubTypeValue()
TypeSubTypeValue(String type, String subType, String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(TypeSubTypeValue typeSubTypeValue)
boolean
equals(Object object)
String
getSubType()
String
getType()
String
getValue()
int
hashCode()
void
setSubType(String subType)
void
setType(String type)
void
setValue(String value)
String
toString()
-
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
setSubType
public void setSubType(String subType)
-
getSubType
public String getSubType()
-
compareTo
public int compareTo(TypeSubTypeValue typeSubTypeValue)
- Specified by:
compareTo
in interfaceComparable<TypeSubTypeValue>
-
-