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
ATypeSubTypeValueis 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 intcompareTo(TypeSubTypeValue typeSubTypeValue)booleanequals(Object object)StringgetSubType()StringgetType()StringgetValue()inthashCode()voidsetSubType(String subType)voidsetType(String type)voidsetValue(String value)StringtoString()
-
-
-
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:
compareToin interfaceComparable<TypeSubTypeValue>
-
-