public enum DiagnosticsLevel extends Enum<DiagnosticsLevel> implements Enumeration
| Modifier and Type | Class and Description |
|---|---|
static class |
DiagnosticsLevel.Builder |
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<DiagnosticsLevel> |
ALL |
static EnumSet<DiagnosticsLevel> |
NONE |
static EnumerationSpecification |
SPECIFICATION |
| Modifier and Type | Method and Description |
|---|---|
static DiagnosticsLevel.Builder |
builder() |
static UnsignedInteger |
getMask(Collection<DiagnosticsLevel> list) |
static UnsignedInteger |
getMask(DiagnosticsLevel... list) |
static EnumSet<DiagnosticsLevel> |
getSet(int mask) |
static EnumSet<DiagnosticsLevel> |
getSet(UnsignedInteger mask) |
int |
getValue()
Return the integer value of this enumeration value.
|
EnumerationSpecification |
specification()
Returns the specification of the
Enumeration. |
DiagnosticsLevel.Builder |
toBuilder()
Returns a builder which can be used to make other instances of the
Enumeration. |
static DiagnosticsLevel |
valueOf(int value) |
static DiagnosticsLevel[] |
valueOf(int[] value) |
static DiagnosticsLevel |
valueOf(Integer value) |
static DiagnosticsLevel[] |
valueOf(Integer[] value) |
static DiagnosticsLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiagnosticsLevel |
valueOf(UnsignedInteger value) |
static DiagnosticsLevel[] |
valueOf(UnsignedInteger[] value) |
static DiagnosticsLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetDescription, getValueAsStringpublic static final DiagnosticsLevel Basic
public static final DiagnosticsLevel Advanced
public static final DiagnosticsLevel Info
public static final DiagnosticsLevel Log
public static final DiagnosticsLevel Debug
public static final EnumerationSpecification SPECIFICATION
public static final EnumSet<DiagnosticsLevel> NONE
public static final EnumSet<DiagnosticsLevel> ALL
public static DiagnosticsLevel[] values()
for (DiagnosticsLevel c : DiagnosticsLevel.values()) System.out.println(c);
public static DiagnosticsLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic EnumerationSpecification specification()
EnumerationEnumeration.specification in interface Enumerationpublic static DiagnosticsLevel valueOf(int value)
public static DiagnosticsLevel valueOf(Integer value)
public static DiagnosticsLevel valueOf(UnsignedInteger value)
public static DiagnosticsLevel[] valueOf(int[] value)
public static DiagnosticsLevel[] valueOf(Integer[] value)
public static DiagnosticsLevel[] valueOf(UnsignedInteger[] value)
public static UnsignedInteger getMask(DiagnosticsLevel... list)
public static UnsignedInteger getMask(Collection<DiagnosticsLevel> list)
public static EnumSet<DiagnosticsLevel> getSet(UnsignedInteger mask)
public static EnumSet<DiagnosticsLevel> getSet(int mask)
public int getValue()
EnumerationgetValue in interface Enumerationpublic static DiagnosticsLevel.Builder builder()
public DiagnosticsLevel.Builder toBuilder()
EnumerationEnumeration.toBuilder in interface EnumerationCopyright © 2026. All rights reserved.