public enum Flag extends java.lang.Enum<Flag>
BusinessObject
.
The get methods for Dependent
s in business objects restrict the result according to the given list of flags.Enum Constant and Description |
---|
DELETE |
INSERT |
NONE |
SELECTED |
UPDATE |
Modifier and Type | Method and Description |
---|---|
static Flag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag NONE
public static final Flag INSERT
public static final Flag UPDATE
public static final Flag DELETE
public static final Flag SELECTED
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static Flag 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 nullCopyright © 2024. All rights reserved.