Package com.openinventor.meshviz.graph
Enum PoMultipleHistogram.HistogPaths
- java.lang.Object
-
- java.lang.Enum<PoMultipleHistogram.HistogPaths>
-
- com.openinventor.meshviz.graph.PoMultipleHistogram.HistogPaths
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<PoMultipleHistogram.HistogPaths>
- Enclosing class:
- PoMultipleHistogram
public static enum PoMultipleHistogram.HistogPaths extends java.lang.Enum<PoMultipleHistogram.HistogPaths> implements IntegerValuedEnum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_ROW
Histogram shows columns in function of rows.ROW_COLUMN
Histogram shows rows in function of columns.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static PoMultipleHistogram.HistogPaths
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic PoMultipleHistogram.HistogPaths
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PoMultipleHistogram.HistogPaths[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_COLUMN
public static final PoMultipleHistogram.HistogPaths ROW_COLUMN
Histogram shows rows in function of columns.
-
COLUMN_ROW
public static final PoMultipleHistogram.HistogPaths COLUMN_ROW
Histogram shows columns in function of rows.
-
-
Method Detail
-
values
public static PoMultipleHistogram.HistogPaths[] 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 (PoMultipleHistogram.HistogPaths c : PoMultipleHistogram.HistogPaths.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PoMultipleHistogram.HistogPaths 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
-
valueOf
public static PoMultipleHistogram.HistogPaths valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-