ch.qos.logback.classic.gaffer
Enum NestingType

java.lang.Object
  extended by java.lang.Enum<NestingType>
      extended by ch.qos.logback.classic.gaffer.NestingType
All Implemented Interfaces:
Serializable, Comparable<NestingType>

public enum NestingType
extends Enum<NestingType>

Author:
Ceki Gücü

Enum Constant Summary
AS_COLLECTION
           
NA
           
SINGLE
           
 
Method Summary
 groovy.lang.MetaClass getMetaClass()
           
 Object getProperty(String name)
           
 Object invokeMethod(String name, Object args)
           
 void setMetaClass(groovy.lang.MetaClass metaClass)
           
 void setProperty(String name, Object value)
           
static NestingType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NestingType[] 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

NA

public static final NestingType NA

SINGLE

public static final NestingType SINGLE

AS_COLLECTION

public static final NestingType AS_COLLECTION
Method Detail

values

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

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

valueOf

public static NestingType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getMetaClass

public groovy.lang.MetaClass getMetaClass()

setMetaClass

public void setMetaClass(groovy.lang.MetaClass metaClass)

invokeMethod

public Object invokeMethod(String name,
                           Object args)

getProperty

public Object getProperty(String name)

setProperty

public void setProperty(String name,
                        Object value)


Copyright © 2005-2011 QOS.ch. All Rights Reserved.