public static enum Mechanism.PRIORITY extends Enum<Mechanism.PRIORITY>
Enum Constant and Description |
---|
HIGH |
HIGHER |
HIGHER_STILL |
HIGHEST |
LOW |
LOWER |
LOWEST |
MEDIUM |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Mechanism.PRIORITY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mechanism.PRIORITY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mechanism.PRIORITY LOWEST
public static final Mechanism.PRIORITY LOWER
public static final Mechanism.PRIORITY LOW
public static final Mechanism.PRIORITY MEDIUM
public static final Mechanism.PRIORITY HIGH
public static final Mechanism.PRIORITY HIGHER
public static final Mechanism.PRIORITY HIGHER_STILL
public static final Mechanism.PRIORITY HIGHEST
public static Mechanism.PRIORITY[] values()
for (Mechanism.PRIORITY c : Mechanism.PRIORITY.values()) System.out.println(c);
public static Mechanism.PRIORITY 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 int getValue()
Copyright © 2013–2016 The Apache Software Foundation. All rights reserved.