Package net.anotheria.asg.generator.view
Enum CMSMappingsConfiguratorGenerator.ContainerAction
- java.lang.Object
-
- java.lang.Enum<CMSMappingsConfiguratorGenerator.ContainerAction>
-
- net.anotheria.asg.generator.view.CMSMappingsConfiguratorGenerator.ContainerAction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CMSMappingsConfiguratorGenerator.ContainerAction>
- Enclosing class:
- CMSMappingsConfiguratorGenerator
public static enum CMSMappingsConfiguratorGenerator.ContainerAction extends java.lang.Enum<CMSMappingsConfiguratorGenerator.ContainerAction>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClassName(MetaDocument doc, MetaContainerProperty container)java.lang.StringgetMappingName(MetaDocument doc, MetaContainerProperty container)java.lang.StringgetViewName(MetaDocument doc, MetaContainerProperty container)static CMSMappingsConfiguratorGenerator.ContainerActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CMSMappingsConfiguratorGenerator.ContainerAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHOW
public static final CMSMappingsConfiguratorGenerator.ContainerAction SHOW
-
DELETE
public static final CMSMappingsConfiguratorGenerator.ContainerAction DELETE
-
MOVE
public static final CMSMappingsConfiguratorGenerator.ContainerAction MOVE
-
ADD
public static final CMSMappingsConfiguratorGenerator.ContainerAction ADD
-
QUICKADD
public static final CMSMappingsConfiguratorGenerator.ContainerAction QUICKADD
-
-
Method Detail
-
values
public static CMSMappingsConfiguratorGenerator.ContainerAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CMSMappingsConfiguratorGenerator.ContainerAction c : CMSMappingsConfiguratorGenerator.ContainerAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CMSMappingsConfiguratorGenerator.ContainerAction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getClassName
public java.lang.String getClassName(MetaDocument doc, MetaContainerProperty container)
-
getMappingName
public java.lang.String getMappingName(MetaDocument doc, MetaContainerProperty container)
-
getViewName
public java.lang.String getViewName(MetaDocument doc, MetaContainerProperty container)
-
-