public enum AdvisoryLocks extends Enum<AdvisoryLocks>
| Enum Constant and Description |
|---|
PUBLISH |
| Modifier and Type | Method and Description |
|---|---|
static AdvisoryLocks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdvisoryLocks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdvisoryLocks PUBLISH
public static AdvisoryLocks[] values()
for (AdvisoryLocks c : AdvisoryLocks.values()) System.out.println(c);
public static AdvisoryLocks 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 © 2018–2019 factcast. All rights reserved.