public enum PluggableObjectType extends Enum<PluggableObjectType>
Enum Constant and Description |
---|
PATTERN_GUARD
Pattern guard object type.
|
PATTERN_OBSERVER
Pattern observer object type.
|
VIEW
View object type.
|
VIRTUALDW
Virtual data window object type.
|
Modifier and Type | Method and Description |
---|---|
static PluggableObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluggableObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluggableObjectType PATTERN_GUARD
public static final PluggableObjectType PATTERN_OBSERVER
public static final PluggableObjectType VIEW
public static final PluggableObjectType VIRTUALDW
public static PluggableObjectType[] values()
for (PluggableObjectType c : PluggableObjectType.values()) System.out.println(c);
public static PluggableObjectType 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 null