Package org.goplanit.output.property
Enum OutputPropertyPriority
- java.lang.Object
-
- java.lang.Enum<OutputPropertyPriority>
-
- org.goplanit.output.property.OutputPropertyPriority
-
- All Implemented Interfaces:
Serializable
,Comparable<OutputPropertyPriority>
public enum OutputPropertyPriority extends Enum<OutputPropertyPriority>
Enumeration giving the priority of output properties. If output values are to be written to a file or stored in memory, they are stored in columns for each iteration. Each iteration represents a row in a data table, with the output properties representing the columns. The values of this enumeration define where the output columns are placed in the table. The lower the priority value, the further to the left the column is placed. So values which represent ID values go to the left, followed by values which represent input values, followed by columns which represent result values.- Author:
- gman6028
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ID_PRIORITY
INPUT_PRIORITY
RESULT_PRIORITY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
value()
Return the String value associated with this enumeration value (the fully qualified class name)static OutputPropertyPriority
valueOf(String name)
Returns the enum constant of this type with the specified name.static OutputPropertyPriority[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID_PRIORITY
public static final OutputPropertyPriority ID_PRIORITY
-
INPUT_PRIORITY
public static final OutputPropertyPriority INPUT_PRIORITY
-
RESULT_PRIORITY
public static final OutputPropertyPriority RESULT_PRIORITY
-
-
Method Detail
-
values
public static OutputPropertyPriority[] 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 (OutputPropertyPriority c : OutputPropertyPriority.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OutputPropertyPriority 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
-
value
public int value()
Return the String value associated with this enumeration value (the fully qualified class name)- Returns:
- the class name associated with this enumeration value
-
-