public static enum Conflicts.Conflict.Severity extends Enum<Conflicts.Conflict.Severity>
Enum Constant and Description |
---|
CRITICAL_ERROR |
ERROR |
NOTICE |
WARNING |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Conflicts.Conflict.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conflicts.Conflict.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conflicts.Conflict.Severity CRITICAL_ERROR
public static final Conflicts.Conflict.Severity ERROR
public static final Conflicts.Conflict.Severity WARNING
public static final Conflicts.Conflict.Severity NOTICE
public static Conflicts.Conflict.Severity[] values()
for (Conflicts.Conflict.Severity c : Conflicts.Conflict.Severity.values()) System.out.println(c);
public static Conflicts.Conflict.Severity 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 String toString()
toString
in class Enum<Conflicts.Conflict.Severity>
Copyright © 2014–2022 ImageJ. All rights reserved.