public static enum Setting.Property extends java.lang.Enum<Setting.Property>
| Enum Constant and Description |
|---|
Deprecated
mark this setting as deprecated
|
Dynamic
iff this setting can be dynamically updateable
|
Filtered
should be filtered in some api (mask password/credentials)
|
IndexScope
Index scope
|
NodeScope
Node scope
|
| Modifier and Type | Method and Description |
|---|---|
static Setting.Property |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Setting.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Setting.Property Filtered
public static final Setting.Property Dynamic
public static final Setting.Property Deprecated
public static final Setting.Property NodeScope
public static final Setting.Property IndexScope
public static Setting.Property[] values()
for (Setting.Property c : Setting.Property.values()) System.out.println(c);
public static Setting.Property valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null