public enum StructureState extends java.lang.Enum<StructureState> implements StructureState
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAfter(StructureState structureState)
Checks if instance of given structure state is after structure state passed in method.
|
static StructureState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StructureState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureState V1
public static final StructureState V2
public static final StructureState V3
public static final StructureState LAST
public static StructureState[] values()
for (StructureState c : StructureState.values()) System.out.println(c);
public static StructureState 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 nullpublic boolean isAfter(StructureState structureState)
StructureStateisAfter in interface StructureStatestructureState - StructureStatetrue if instance of given structure state is after structure state passed in method, false
otherwiseCopyright © 2018 SAP SE. All Rights Reserved.