Enum GenericTraceVisualizationType
- java.lang.Object
-
- java.lang.Enum<GenericTraceVisualizationType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.GenericTraceVisualizationType
-
- All Implemented Interfaces:
Serializable
,Comparable<GenericTraceVisualizationType>
public enum GenericTraceVisualizationType extends Enum<GenericTraceVisualizationType>
Java class for GenericTraceVisualizationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GenericTraceVisualizationType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="stop"/> <enumeration value="hide"/> <enumeration value="oneLine"/> <enumeration value="brief"/> <enumeration value="detailed"/> <enumeration value="full"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BRIEF
The trace is visualized in brief form - potentially multiline but less detailed.DETAILED
The trace is visualized in details.FULL
The trace is visualized in full details.HIDE
The trace is not visualized.ONE_LINE
The trace is visualized in "one-line" mode.STOP
The trace nor its children are not visualized.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GenericTraceVisualizationType
fromValue(String v)
String
value()
static GenericTraceVisualizationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static GenericTraceVisualizationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STOP
public static final GenericTraceVisualizationType STOP
The trace nor its children are not visualized.
-
HIDE
public static final GenericTraceVisualizationType HIDE
The trace is not visualized. But its children could be. This is the default.
-
ONE_LINE
public static final GenericTraceVisualizationType ONE_LINE
The trace is visualized in "one-line" mode. No details.
-
BRIEF
public static final GenericTraceVisualizationType BRIEF
The trace is visualized in brief form - potentially multiline but less detailed.
-
DETAILED
public static final GenericTraceVisualizationType DETAILED
The trace is visualized in details.
-
FULL
public static final GenericTraceVisualizationType FULL
The trace is visualized in full details.
-
-
Method Detail
-
values
public static GenericTraceVisualizationType[] 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 (GenericTraceVisualizationType c : GenericTraceVisualizationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenericTraceVisualizationType 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 String value()
-
fromValue
public static GenericTraceVisualizationType fromValue(String v)
-
-