Package org.teamapps.dto
Enum UiIconPosition
- java.lang.Object
-
- java.lang.Enum<UiIconPosition>
-
- org.teamapps.dto.UiIconPosition
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UiIconPosition>
public enum UiIconPosition extends java.lang.Enum<UiIconPosition>
THIS IS GENERATED CODE! PLEASE DO NOT MODIFY - ALL YOUR WORK WOULD BE LOST!
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEFT_BOTTOMLEFT_MIDDLELEFT_TOPRIGHT_BOTTOMRIGHT_MIDDLERIGHT_TOPTOP_CENTERTOP_LEFTTOP_RIGHT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intjsonValue()static UiIconPositionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UiIconPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_LEFT
public static final UiIconPosition TOP_LEFT
-
TOP_CENTER
public static final UiIconPosition TOP_CENTER
-
TOP_RIGHT
public static final UiIconPosition TOP_RIGHT
-
LEFT_TOP
public static final UiIconPosition LEFT_TOP
-
LEFT_MIDDLE
public static final UiIconPosition LEFT_MIDDLE
-
LEFT_BOTTOM
public static final UiIconPosition LEFT_BOTTOM
-
RIGHT_TOP
public static final UiIconPosition RIGHT_TOP
-
RIGHT_MIDDLE
public static final UiIconPosition RIGHT_MIDDLE
-
RIGHT_BOTTOM
public static final UiIconPosition RIGHT_BOTTOM
-
-
Method Detail
-
values
public static UiIconPosition[] 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 (UiIconPosition c : UiIconPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiIconPosition 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
-
jsonValue
public int jsonValue()
-
-