public enum DefaultConfig extends Enum<DefaultConfig>
Enum Constant and Description |
---|
MAX_THREAD_POOL_SIZE |
Modifier and Type | Method and Description |
---|---|
int |
getIntValue() |
Object |
getValue() |
static DefaultConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultConfig MAX_THREAD_POOL_SIZE
public static DefaultConfig[] values()
for (DefaultConfig c : DefaultConfig.values()) System.out.println(c);
public static DefaultConfig 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 int getIntValue()
public Object getValue()
Copyright © 2008–2016 JBoss.org. All rights reserved.