Package org.exoplatform.cs.dto
Enum InfoType
- java.lang.Object
-
- java.lang.Enum<InfoType>
-
- org.exoplatform.cs.dto.InfoType
-
- All Implemented Interfaces:
Serializable,Comparable<InfoType>
public enum InfoType extends Enum<InfoType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InfoTypevalueOf(String name)Returns the enum constant of this type with the specified name.static InfoType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFO_1
public static final InfoType INFO_1
-
INFO_2
public static final InfoType INFO_2
-
INFO_3
public static final InfoType INFO_3
-
INFO_4
public static final InfoType INFO_4
-
INFO_5
public static final InfoType INFO_5
-
INFO_6
public static final InfoType INFO_6
-
INFO_7
public static final InfoType INFO_7
-
-
Method Detail
-
values
public static InfoType[] 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 (InfoType c : InfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InfoType 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
-
-