public enum NestingType extends Enum<NestingType> implements groovy.lang.GroovyObject
| Enum Constant and Description |
|---|
AS_COLLECTION |
NA |
SINGLE |
SINGLE_WITH_VALUE_OF_CONVENTION |
| Modifier and Type | Field and Description |
|---|---|
static NestingType |
MAX_VALUE |
static NestingType |
MIN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static NestingType |
$INIT(Object... para) |
groovy.lang.MetaClass |
getMetaClass() |
Object |
getProperty(String property) |
Object |
invokeMethod(String method,
Object arguments) |
NestingType |
next() |
NestingType |
previous() |
void |
setMetaClass(groovy.lang.MetaClass mc) |
void |
setProperty(String property,
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.
|
public static final NestingType NA
public static final NestingType SINGLE
public static final NestingType SINGLE_WITH_VALUE_OF_CONVENTION
public static final NestingType AS_COLLECTION
public static final NestingType MIN_VALUE
public static final NestingType MAX_VALUE
public static NestingType[] values()
for (NestingType c : NestingType.values()) System.out.println(c);
public static NestingType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic groovy.lang.MetaClass getMetaClass()
getMetaClass in interface groovy.lang.GroovyObjectpublic void setMetaClass(groovy.lang.MetaClass mc)
setMetaClass in interface groovy.lang.GroovyObjectpublic Object invokeMethod(String method, Object arguments)
invokeMethod in interface groovy.lang.GroovyObjectpublic Object getProperty(String property)
getProperty in interface groovy.lang.GroovyObjectpublic void setProperty(String property, Object value)
setProperty in interface groovy.lang.GroovyObjectpublic NestingType next()
public NestingType previous()
public static final NestingType $INIT(Object... para)
Copyright © 2005–2021 QOS.ch. All rights reserved.