public enum ActionCategory extends Enum<ActionCategory>
| Modifier and Type | Method and Description | 
|---|---|
| static ActionCategory | fromValue(String value)Use this in place of valueOf. | 
| String | toString() | 
| static ActionCategory | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ActionCategory[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ActionCategory Source
public static final ActionCategory Build
public static final ActionCategory Deploy
public static final ActionCategory Test
public static final ActionCategory Invoke
public static ActionCategory[] values()
for (ActionCategory c : ActionCategory.values()) System.out.println(c);
public static ActionCategory 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 String toString()
toString in class Enum<ActionCategory>public static ActionCategory fromValue(String value)
value - real valueCopyright © 2013 Amazon Web Services, Inc. All Rights Reserved.