public enum DataGovernance extends java.lang.Enum<DataGovernance>
| Enum Constant and Description |
|---|
EU_ONLY
Select this if your feature flags are published to CDN nodes only in the EU.
|
GLOBAL
Select this if your feature flags are published to all global CDN nodes.
|
| Modifier and Type | Method and Description |
|---|---|
static DataGovernance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataGovernance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataGovernance GLOBAL
public static final DataGovernance EU_ONLY
public static DataGovernance[] values()
for (DataGovernance c : DataGovernance.values()) System.out.println(c);
public static DataGovernance 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