public enum ConditionAction extends Enum<ConditionAction>
| Enum Constant and Description |
|---|
DONT_REQUIRE |
ENABLE |
LOCK |
NOT_RELEVANT |
NULL |
READ_ONLY |
RELEVANT |
REQUIRE |
UNLOCK |
| Modifier and Type | Method and Description |
|---|---|
static ConditionAction |
from(int code) |
int |
getCode() |
String |
getVerb() |
boolean |
isCascading() |
static ConditionAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionAction NULL
public static final ConditionAction RELEVANT
public static final ConditionAction NOT_RELEVANT
public static final ConditionAction ENABLE
public static final ConditionAction READ_ONLY
public static final ConditionAction LOCK
public static final ConditionAction UNLOCK
public static final ConditionAction REQUIRE
public static final ConditionAction DONT_REQUIRE
public static ConditionAction[] values()
for (ConditionAction c : ConditionAction.values()) System.out.println(c);
public static ConditionAction 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 ConditionAction from(int code)
public int getCode()
public boolean isCascading()
public String getVerb()
Copyright © 2022. All rights reserved.