public enum FactoryStrategy extends Enum<FactoryStrategy>
Enum Constant and Description |
---|
caching |
fastCaching |
fastFile |
fastFused |
fastQueueing |
file |
fused |
queueing |
Modifier and Type | Method and Description |
---|---|
static FactoryStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FactoryStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FactoryStrategy fastQueueing
public static final FactoryStrategy queueing
public static final FactoryStrategy fastCaching
public static final FactoryStrategy caching
public static final FactoryStrategy fastFused
public static final FactoryStrategy fused
public static final FactoryStrategy fastFile
public static final FactoryStrategy file
public static FactoryStrategy[] values()
for (FactoryStrategy c : FactoryStrategy.values()) System.out.println(c);
public static FactoryStrategy 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 © 2021. All rights reserved.