Enum GenerateType
- java.lang.Object
-
- java.lang.Enum<GenerateType>
-
- net.n2oapp.framework.api.metadata.global.view.page.GenerateType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GenerateType>
public enum GenerateType extends java.lang.Enum<GenerateType>
Генерация стандартных действий
-
-
Enum Constant Summary
Enum Constants Enum Constant Description closecolumnscrudexportfiltersrefreshresizesaveAndClosesubmittableSettings
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GenerateTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GenerateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
crud
public static final GenerateType crud
-
saveAndClose
public static final GenerateType saveAndClose
-
close
public static final GenerateType close
-
submit
public static final GenerateType submit
-
tableSettings
public static final GenerateType tableSettings
-
refresh
public static final GenerateType refresh
-
resize
public static final GenerateType resize
-
export
public static final GenerateType export
-
columns
public static final GenerateType columns
-
filters
public static final GenerateType filters
-
-
Method Detail
-
values
public static GenerateType[] 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 (GenerateType c : GenerateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenerateType 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
-
-