Package com.epam.ta.reportportal.entity
Enum AnalyzeMode
- java.lang.Object
-
- java.lang.Enum<AnalyzeMode>
-
- com.epam.ta.reportportal.entity.AnalyzeMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AnalyzeMode>
public enum AnalyzeMode extends java.lang.Enum<AnalyzeMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_LAUNCHESBY_LAUNCH_NAMECURRENT_LAUNCH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<AnalyzeMode>fromString(java.lang.String mode)java.lang.StringgetValue()static AnalyzeModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AnalyzeMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_LAUNCHES
public static final AnalyzeMode ALL_LAUNCHES
-
BY_LAUNCH_NAME
public static final AnalyzeMode BY_LAUNCH_NAME
-
CURRENT_LAUNCH
public static final AnalyzeMode CURRENT_LAUNCH
-
-
Method Detail
-
values
public static AnalyzeMode[] 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 (AnalyzeMode c : AnalyzeMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnalyzeMode 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
-
fromString
public static java.util.Optional<AnalyzeMode> fromString(java.lang.String mode)
-
getValue
public java.lang.String getValue()
-
-