Package com.mebigfatguy.fbcontrib.detect
Enum LoggerOddities.LOUserValue.LOType
- java.lang.Object
-
- java.lang.Enum<LoggerOddities.LOUserValue.LOType>
-
- com.mebigfatguy.fbcontrib.detect.LoggerOddities.LOUserValue.LOType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LoggerOddities.LOUserValue.LOType>
- Enclosing class:
- LoggerOddities.LOUserValue<T>
static enum LoggerOddities.LOUserValue.LOType extends java.lang.Enum<LoggerOddities.LOUserValue.LOType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARRAY_SIZE
CLASS_NAME
FORMATTER_LOGGER
MESSAGE_REG
METHOD_NAME
NULL
SIMPLE_FORMAT
TOSTRING
-
Constructor Summary
Constructors Modifier Constructor Description private
LOType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoggerOddities.LOUserValue.LOType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LoggerOddities.LOUserValue.LOType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASS_NAME
public static final LoggerOddities.LOUserValue.LOType CLASS_NAME
-
METHOD_NAME
public static final LoggerOddities.LOUserValue.LOType METHOD_NAME
-
MESSAGE_REG
public static final LoggerOddities.LOUserValue.LOType MESSAGE_REG
-
ARRAY_SIZE
public static final LoggerOddities.LOUserValue.LOType ARRAY_SIZE
-
SIMPLE_FORMAT
public static final LoggerOddities.LOUserValue.LOType SIMPLE_FORMAT
-
TOSTRING
public static final LoggerOddities.LOUserValue.LOType TOSTRING
-
FORMATTER_LOGGER
public static final LoggerOddities.LOUserValue.LOType FORMATTER_LOGGER
-
NULL
public static final LoggerOddities.LOUserValue.LOType NULL
-
-
Method Detail
-
values
public static LoggerOddities.LOUserValue.LOType[] values()
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 (LoggerOddities.LOUserValue.LOType c : LoggerOddities.LOUserValue.LOType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoggerOddities.LOUserValue.LOType valueOf(java.lang.String name)
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
-
-