Package com.kenai.constantine.platform
Enum PRIO
- java.lang.Object
-
- java.lang.Enum<PRIO>
-
- com.kenai.constantine.platform.PRIO
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __UNKNOWN_CONSTANT__Deprecated.PRIO_MAXDeprecated.PRIO_MINDeprecated.PRIO_PGRPDeprecated.PRIO_PROCESSDeprecated.PRIO_USERDeprecated.
-
Field Summary
Fields Modifier and Type Field Description private static ConstantResolver<PRIO>resolverDeprecated.
-
Constructor Summary
Constructors Modifier Constructor Description privatePRIO()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleandefined()Deprecated.java.lang.Stringdescription()Deprecated.intintValue()Deprecated.longlongValue()Deprecated.java.lang.StringtoString()Deprecated.intvalue()Deprecated.static PRIOvalueOf(int value)Deprecated.Returns the enum constant of this type with the specified name.static PRIOvalueOf(java.lang.String name)Deprecated.Returns the enum constant of this type with the specified name.static PRIO[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRIO_MIN
public static final PRIO PRIO_MIN
Deprecated.
-
PRIO_PROCESS
public static final PRIO PRIO_PROCESS
Deprecated.
-
PRIO_PGRP
public static final PRIO PRIO_PGRP
Deprecated.
-
PRIO_USER
public static final PRIO PRIO_USER
Deprecated.
-
PRIO_MAX
public static final PRIO PRIO_MAX
Deprecated.
-
__UNKNOWN_CONSTANT__
public static final PRIO __UNKNOWN_CONSTANT__
Deprecated.
-
-
Field Detail
-
resolver
private static final ConstantResolver<PRIO> resolver
Deprecated.
-
-
Method Detail
-
values
public static PRIO[] values()
Deprecated.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 (PRIO c : PRIO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PRIO valueOf(java.lang.String name)
Deprecated.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
-
description
public final java.lang.String description()
Deprecated.
-
toString
public final java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Enum<PRIO>
-
valueOf
public static final PRIO valueOf(int value)
Deprecated.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:
value- 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
-
-