com.paulwithers.openLog
Enum OpenLogItem.LogType

java.lang.Object
  extended by java.lang.Enum<OpenLogItem.LogType>
      extended by com.paulwithers.openLog.OpenLogItem.LogType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OpenLogItem.LogType>
Enclosing class:
OpenLogItem

public static enum OpenLogItem.LogType
extends java.lang.Enum<OpenLogItem.LogType>

Enum to define log type

Since:
6.0.0

Enum Constant Summary
TYPE_ERROR
           
TYPE_EVENT
           
 
Field Summary
private  java.lang.String value_
           
 
Method Summary
 java.lang.String getValue()
           
static OpenLogItem.LogType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OpenLogItem.LogType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TYPE_ERROR

public static final OpenLogItem.LogType TYPE_ERROR

TYPE_EVENT

public static final OpenLogItem.LogType TYPE_EVENT
Field Detail

value_

private final java.lang.String value_
Method Detail

values

public static OpenLogItem.LogType[] 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 (OpenLogItem.LogType c : OpenLogItem.LogType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OpenLogItem.LogType 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 name
java.lang.NullPointerException - if the argument is null

getValue

public java.lang.String getValue()