public static enum ActionMapping.Type extends Enum<ActionMapping.Type>
| Modifier and Type | Method and Description | 
|---|---|
| static ActionMapping.Type | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ActionMapping.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ActionMapping.Type ACTION
public static final ActionMapping.Type GROUP
public static final ActionMapping.Type INSERT
public static final ActionMapping.Type SEPARATOR
public static ActionMapping.Type[] values()
for (ActionMapping.Type c : ActionMapping.Type.values()) System.out.println(c);
public static ActionMapping.Type 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 © 2019. All Rights Reserved.