Package org.openjdk.jmh.runner.link
Enum OutputFrame.Type
- java.lang.Object
-
- java.lang.Enum<OutputFrame.Type>
-
- org.openjdk.jmh.runner.link.OutputFrame.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OutputFrame.Type>
- Enclosing class:
- OutputFrame
public static enum OutputFrame.Type extends java.lang.Enum<OutputFrame.Type>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Type()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OutputFrame.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OutputFrame.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUT
public static final OutputFrame.Type OUT
-
ERR
public static final OutputFrame.Type ERR
-
-
Method Detail
-
values
public static OutputFrame.Type[] 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 (OutputFrame.Type c : OutputFrame.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OutputFrame.Type 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
-
-