Serializable, Comparable<CompatibilityFlags>public enum CompatibilityFlags extends Enum<CompatibilityFlags>
| Enum Constant | Description |
|---|---|
ALLOW_MISSING_TARGET_OBJECT_ON_REPLACE |
|
FORBID_REMOVE_MISSING_OBJECT |
|
MISSING_VALUES_AS_NULLS |
|
REMOVE_NONE_EXISTING_ARRAY_ELEMENT |
| Modifier and Type | Method | Description |
|---|---|---|
static EnumSet<CompatibilityFlags> |
defaults() |
|
static CompatibilityFlags |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static CompatibilityFlags[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompatibilityFlags MISSING_VALUES_AS_NULLS
public static final CompatibilityFlags REMOVE_NONE_EXISTING_ARRAY_ELEMENT
public static final CompatibilityFlags ALLOW_MISSING_TARGET_OBJECT_ON_REPLACE
public static final CompatibilityFlags FORBID_REMOVE_MISSING_OBJECT
public static CompatibilityFlags[] values()
for (CompatibilityFlags c : CompatibilityFlags.values()) System.out.println(c);
public static CompatibilityFlags valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static EnumSet<CompatibilityFlags> defaults()
Copyright © 2022. All rights reserved.