Interface ConfigurationOption
-
- All Known Implementing Classes:
DefaultConfigurationOption
public interface ConfigurationOption
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Boolean
asBoolean()
java.lang.Integer
asInteger()
java.lang.String
asString()
<T> T
asValue()
boolean
hasValue()
ConfigurationOption
value(java.lang.Object value)
-
-
-
Method Detail
-
value
ConfigurationOption value(java.lang.Object value)
-
hasValue
boolean hasValue()
-
asInteger
java.lang.Integer asInteger()
-
asString
java.lang.String asString()
-
asBoolean
java.lang.Boolean asBoolean()
-
asValue
<T> T asValue()
-
-