Package com.rometools.modules.sle.types
Interface EntryValue
-
- All Superinterfaces:
Cloneable,Comparable<EntryValue>,Serializable
- All Known Implementing Classes:
DateValue,NumberValue,StringValue
public interface EntryValue extends Serializable, Cloneable, Comparable<EntryValue>
An interface that parents data types for sorting and grouping.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetElement()Returns the name of the element.StringgetLabel()Returns a label for the element.org.jdom2.NamespacegetNamespace()Returns the namespace of the element.Comparable<?>getValue()Returns the value of the element.-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getElement
String getElement()
Returns the name of the element.- Returns:
- Returns the name of the element.
-
getLabel
String getLabel()
Returns a label for the element.- Returns:
- Returns a label for the element.
-
getValue
Comparable<?> getValue()
Returns the value of the element.- Returns:
- Returns the value of the element.
-
getNamespace
org.jdom2.Namespace getNamespace()
Returns the namespace of the element.- Returns:
- Returns the namespace of the element.
-
-