SettingValue<T> |
SettingsChangeEvent.getNewValue() |
|
SettingValue<T> |
SettingsChangeEvent.getOldValue() |
|
<T> SettingValue<T> |
SettingsService.getSetting(String key) |
Gets the value of the setting defined by key.
|
<T> SettingValue<T> |
SettingsService.getSetting(SettingDefinition<T> key) |
Gets the value of the setting defined by key.
|
<T> SettingValue<T> |
SettingsServiceImpl.getSetting(String key) |
Gets the value of the setting defined by key.
|
<T> SettingValue<T> |
SettingsServiceImpl.getSetting(SettingDefinition<T> key) |
Gets the value of the setting defined by key.
|
SettingValue<?> |
SettingsDao.getSettingValue(String key) |
Returns the value of the specified setting or null if it does not exist.
|
SettingValue<Boolean> |
SettingValueFactory.newBooleanSettingValue(String key,
Boolean value) |
Constructs a new Boolean setting value from the supplied key and value.
|
default SettingValue<Boolean> |
SettingValueFactory.newBooleanSettingValue(String key,
String stringValue) |
Constructs a new Boolean setting value from the supplied key and string value.
|
default SettingValue<Boolean> |
SettingValueFactory.newBooleanSettingValue(BooleanSettingDefinition setting,
String stringValue) |
Constructs a new Boolean setting value from the supplied definition and string value.
|
SettingValue<String> |
SettingValueFactory.newChoiceSettingValue(String key,
String stringValue) |
Constructs a new String setting value from the supplied definition and string value.
|
default SettingValue<String> |
SettingValueFactory.newChoiceSettingValue(ChoiceSettingDefinition setting,
String stringValue) |
Constructs a new String setting value from the supplied definition and string value.
|
default SettingValue<org.joda.time.DateTime> |
SettingValueFactory.newDateTimeSettingValue(String key,
String stringValue) |
Constructs a new TimeInstant setting value from the supplied key and string value.
|
SettingValue<org.joda.time.DateTime> |
SettingValueFactory.newDateTimeSettingValue(String key,
org.joda.time.DateTime value) |
Constructs a new TimeInstant setting value from the supplied key and value.
|
default SettingValue<org.joda.time.DateTime> |
SettingValueFactory.newDateTimeSettingValue(DateTimeSettingDefinition setting,
String stringValue) |
Constructs a new TimeInstant setting value from the supplied definition and string value.
|
SettingValue<File> |
SettingValueFactory.newFileSettingValue(String key,
File value) |
Constructs a new File setting value from the supplied key and value.
|
default SettingValue<File> |
SettingValueFactory.newFileSettingValue(String key,
String stringValue) |
Constructs a new File setting value from the supplied key and string value.
|
default SettingValue<File> |
SettingValueFactory.newFileSettingValue(FileSettingDefinition setting,
String stringValue) |
Constructs a new File setting value from the supplied definition and string value.
|
SettingValue<Integer> |
SettingValueFactory.newIntegerSettingValue(String key,
Integer value) |
Constructs a new Integer setting value from the supplied key and value.
|
default SettingValue<Integer> |
SettingValueFactory.newIntegerSettingValue(String key,
String stringValue) |
Constructs a new Integer setting value from the supplied key and string value.
|
default SettingValue<Integer> |
SettingValueFactory.newIntegerSettingValue(IntegerSettingDefinition setting,
String stringValue) |
Constructs a new Integer setting value from the supplied definition and string value.
|
default SettingValue<MultilingualString> |
SettingValueFactory.newMultiLingualStringSettingValue(String key,
String stringValue) |
Constructs a new MultilingualString setting value from the supplied key and string value.
|
SettingValue<MultilingualString> |
SettingValueFactory.newMultiLingualStringSettingValue(String key,
MultilingualString value) |
Constructs a new MultilingualString setting value from the supplied key and value.
|
default SettingValue<MultilingualString> |
SettingValueFactory.newMultiLingualStringSettingValue(MultilingualStringSettingDefinition setting,
String stringValue) |
Constructs a new MultilingualString setting value from the supplied definition and string value.
|
SettingValue<Double> |
SettingValueFactory.newNumericSettingValue(String key,
Double value) |
Constructs a new Double setting value from the supplied key and value.
|
default SettingValue<Double> |
SettingValueFactory.newNumericSettingValue(String key,
String stringValue) |
Constructs a new Double setting value from the supplied key and string value.
|
default SettingValue<Double> |
SettingValueFactory.newNumericSettingValue(NumericSettingDefinition setting,
String stringValue) |
Constructs a new Double setting value from the supplied definition and string value.
|
default SettingValue<?> |
SettingValueFactory.newSettingValue(SettingDefinition<?> setting,
String value) |
Constructs a new generic setting value from the supplied definition and string value.
|
SettingValue<String> |
SettingValueFactory.newStringSettingValue(String key,
String stringValue) |
Constructs a new String setting value from the supplied key and string value.
|
default SettingValue<String> |
SettingValueFactory.newStringSettingValue(StringSettingDefinition setting,
String stringValue) |
Constructs a new String setting value from the supplied definition and string value.
|
default SettingValue<URI> |
SettingValueFactory.newUriSettingValue(String key,
String stringValue) |
Constructs a new URI setting value from the supplied key and string value.
|
SettingValue<URI> |
SettingValueFactory.newUriSettingValue(String key,
URI value) |
Constructs a new URI setting value from the supplied key and value.
|
default SettingValue<URI> |
SettingValueFactory.newUriSettingValue(UriSettingDefinition setting,
String stringValue) |
Constructs a new URI setting value from the supplied definition and string value.
|