org.gcube.contentmanagement.util.logging
Enum LoggingConfigurator.Category

java.lang.Object
  extended by java.lang.Enum<LoggingConfigurator.Category>
      extended by org.gcube.contentmanagement.util.logging.LoggingConfigurator.Category
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LoggingConfigurator.Category>
Enclosing class:
LoggingConfigurator

public static enum LoggingConfigurator.Category
extends java.lang.Enum<LoggingConfigurator.Category>

The Enum Category.


Enum Constant Summary
NETWORK
          The NETWORK.
SCRIPT
          The SCRIPT.
TASK
          The TASK.
UTIL
          The UTIL.
 
Method Summary
static LoggingConfigurator.Category valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LoggingConfigurator.Category[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TASK

public static final LoggingConfigurator.Category TASK
The TASK.


UTIL

public static final LoggingConfigurator.Category UTIL
The UTIL.


NETWORK

public static final LoggingConfigurator.Category NETWORK
The NETWORK.


SCRIPT

public static final LoggingConfigurator.Category SCRIPT
The SCRIPT.

Method Detail

values

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

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

valueOf

public static LoggingConfigurator.Category 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