Package h
Enum EN_pack_mode
- java.lang.Object
-
- java.lang.Enum<EN_pack_mode>
-
- h.EN_pack_mode
-
- All Implemented Interfaces:
Serializable
,Comparable<EN_pack_mode>
public enum EN_pack_mode extends Enum<EN_pack_mode>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EN_pack_mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static EN_pack_mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
l_undef
public static final EN_pack_mode l_undef
-
l_clust
public static final EN_pack_mode l_clust
-
l_node
public static final EN_pack_mode l_node
-
l_graph
public static final EN_pack_mode l_graph
-
l_array
public static final EN_pack_mode l_array
-
l_aspect
public static final EN_pack_mode l_aspect
-
-
Method Detail
-
values
public static EN_pack_mode[] 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 (EN_pack_mode c : EN_pack_mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EN_pack_mode 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
-
-