public enum ActionType extends Enum<ActionType>
| Enum Constant and Description |
|---|
DEBUG |
EXPLORATION |
PROTOTYPE |
USER |
| Modifier and Type | Field and Description |
|---|---|
static List<ActionType> |
ALL |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
boolean |
isDebug() |
boolean |
isExploration() |
boolean |
isPrototype() |
boolean |
isUser() |
boolean |
matchesTypeOf(ObjectAction action) |
static ActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionType DEBUG
public static final ActionType EXPLORATION
public static final ActionType PROTOTYPE
public static final ActionType USER
public static final List<ActionType> ALL
public static ActionType[] values()
for (ActionType c : ActionType.values()) System.out.println(c);
public static ActionType 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 nullpublic boolean matchesTypeOf(ObjectAction action)
public boolean isDebug()
public boolean isExploration()
public boolean isPrototype()
public boolean isUser()
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.