public enum OverrideBehaviour extends java.lang.Enum<OverrideBehaviour>
| Enum Constant and Description |
|---|
LOCAL_ONLY
When evaluating values, the SDK will not use feature flags and settings from the ConfigCat CDN, but it will use
all feature flags and settings that are loaded from local-override sources.
|
LOCAL_OVER_REMOTE
When evaluating values, the SDK will use all feature flags and settings that are downloaded from the ConfigCat CDN,
plus all feature flags and settings that are loaded from local-override sources.
|
REMOTE_OVER_LOCAL
When evaluating values, the SDK will use all feature flags and settings that are downloaded from the ConfigCat CDN,
plus all feature flags and settings that are loaded from local-override sources.
|
| Modifier and Type | Method and Description |
|---|---|
static OverrideBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OverrideBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverrideBehaviour LOCAL_ONLY
public static final OverrideBehaviour LOCAL_OVER_REMOTE
public static final OverrideBehaviour REMOTE_OVER_LOCAL
public static OverrideBehaviour[] values()
for (OverrideBehaviour c : OverrideBehaviour.values()) System.out.println(c);
public static OverrideBehaviour 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