public static enum ConcurrentEnvironment.Strategy extends Enum<ConcurrentEnvironment.Strategy>
| Enum Constant and Description |
|---|
Block |
DecayingPeriod |
FixedPeriod |
Recycle |
| Modifier and Type | Method and Description |
|---|---|
static ConcurrentEnvironment.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConcurrentEnvironment.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConcurrentEnvironment.Strategy Block
public static final ConcurrentEnvironment.Strategy FixedPeriod
public static final ConcurrentEnvironment.Strategy DecayingPeriod
public static final ConcurrentEnvironment.Strategy Recycle
public static ConcurrentEnvironment.Strategy[] values()
for (ConcurrentEnvironment.Strategy c : ConcurrentEnvironment.Strategy.values()) System.out.println(c);
public static ConcurrentEnvironment.Strategy 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 nullCopyright © December 07, 2012-2014 The Internet Party. All Rights Reserved.