public static enum Resolution.Type extends Enum<Resolution.Type>
| Enum Constant and Description |
|---|
LICENSE_UNSATISFIED |
MISSING |
NOT_ACTIVE |
RUNNING |
VERSION_MISMATCH |
| Modifier and Type | Method and Description |
|---|---|
static Resolution.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Resolution.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resolution.Type MISSING
public static final Resolution.Type NOT_ACTIVE
public static final Resolution.Type VERSION_MISMATCH
public static final Resolution.Type RUNNING
public static final Resolution.Type LICENSE_UNSATISFIED
public static Resolution.Type[] values()
for (Resolution.Type c : Resolution.Type.values()) System.out.println(c);
public static Resolution.Type 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 nullCopyright © 2023 Suncode. All rights reserved.