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