Interface IEnumConfigurationValue<P>
-
- All Known Implementing Classes:
EnumConfigurationValue
public interface IEnumConfigurationValue<P>
Defines the enum configuration value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <D> D
getValue()
Get the value.<D> java.util.Collection<D>
getValueList()
Get the converted value as listjava.lang.String
toString()
Get the string representation
-
-
-
Method Detail
-
getValue
<D> D getValue()
Get the value. In case of a list it will be the first element.- Type Parameters:
D
- the generic value type- Returns:
- the value. In case of a list it will be the first element.
-
getValueList
<D> java.util.Collection<D> getValueList()
Get the converted value as list- Type Parameters:
D
- the generic value type- Returns:
- the value list
-
toString
java.lang.String toString()
Get the string representation- Overrides:
toString
in classjava.lang.Object
- Returns:
- the string representation
-
-