public enum EdmConcurrencyMode extends Enum<EdmConcurrencyMode>
Possible values are "None", which is the default, and "Fixed". Fixed implies that the property should be used for optimistic concurrency checks.
Modifier and Type | Method and Description |
---|---|
static EdmConcurrencyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdmConcurrencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdmConcurrencyMode None
public static final EdmConcurrencyMode Fixed
public static EdmConcurrencyMode[] values()
for (EdmConcurrencyMode c : EdmConcurrencyMode.values()) System.out.println(c);
public static EdmConcurrencyMode 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 nullCopyright © 2013-2017 The Apache Software Foundation. All Rights Reserved.