public enum SystemType extends Enum<SystemType>
| Enum Constant and Description |
|---|
COMPOUND_LOW_LEVEL_ABSTRACTION |
CONSTANT |
CONTEXT |
EVENT |
HIGH_LEVEL_ABSTRACTION |
LOW_LEVEL_ABSTRACTION |
PRIMITIVE_PARAMETER |
SEQUENTIAL_TEMPORAL_PATTERN_ABSTRACTION |
SLICE_ABSTRACTION |
| Modifier and Type | Method and Description |
|---|---|
static SystemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemType CONSTANT
public static final SystemType EVENT
public static final SystemType PRIMITIVE_PARAMETER
public static final SystemType LOW_LEVEL_ABSTRACTION
public static final SystemType COMPOUND_LOW_LEVEL_ABSTRACTION
public static final SystemType HIGH_LEVEL_ABSTRACTION
public static final SystemType SLICE_ABSTRACTION
public static final SystemType SEQUENTIAL_TEMPORAL_PATTERN_ABSTRACTION
public static final SystemType CONTEXT
public static SystemType[] values()
for (SystemType c : SystemType.values()) System.out.println(c);
public static SystemType 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 © 2016–2019 Emory University. All rights reserved.