Package adalid.jee2.meta.proyecto.base
Enum ProyectoMavenPrime.DialogPosition
- java.lang.Object
-
- java.lang.Enum<ProyectoMavenPrime.DialogPosition>
-
- adalid.jee2.meta.proyecto.base.ProyectoMavenPrime.DialogPosition
-
- All Implemented Interfaces:
Serializable,Comparable<ProyectoMavenPrime.DialogPosition>
- Enclosing class:
- ProyectoMavenPrime
protected static enum ProyectoMavenPrime.DialogPosition extends Enum<ProyectoMavenPrime.DialogPosition>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOMCENTERLEFTLEFT_BOTTOMLEFT_TOPRIGHTRIGHT_BOTTOMRIGHT_TOPTOP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProyectoMavenPrime.DialogPositionvalueOf(String name)Returns the enum constant of this type with the specified name.static ProyectoMavenPrime.DialogPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CENTER
public static final ProyectoMavenPrime.DialogPosition CENTER
-
LEFT
public static final ProyectoMavenPrime.DialogPosition LEFT
-
RIGHT
public static final ProyectoMavenPrime.DialogPosition RIGHT
-
TOP
public static final ProyectoMavenPrime.DialogPosition TOP
-
BOTTOM
public static final ProyectoMavenPrime.DialogPosition BOTTOM
-
LEFT_TOP
public static final ProyectoMavenPrime.DialogPosition LEFT_TOP
-
LEFT_BOTTOM
public static final ProyectoMavenPrime.DialogPosition LEFT_BOTTOM
-
RIGHT_TOP
public static final ProyectoMavenPrime.DialogPosition RIGHT_TOP
-
RIGHT_BOTTOM
public static final ProyectoMavenPrime.DialogPosition RIGHT_BOTTOM
-
-
Method Detail
-
values
public static ProyectoMavenPrime.DialogPosition[] 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 (ProyectoMavenPrime.DialogPosition c : ProyectoMavenPrime.DialogPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProyectoMavenPrime.DialogPosition valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-