public static enum CompatibilitySingletonFactory.SingletonStorage extends Enum<CompatibilitySingletonFactory.SingletonStorage>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Field and Description |
---|---|
private Map<Class,Object> |
instances |
private Object |
lock |
Modifier and Type | Method and Description |
---|---|
static CompatibilitySingletonFactory.SingletonStorage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompatibilitySingletonFactory.SingletonStorage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompatibilitySingletonFactory.SingletonStorage INSTANCE
public static CompatibilitySingletonFactory.SingletonStorage[] values()
for (CompatibilitySingletonFactory.SingletonStorage c : CompatibilitySingletonFactory.SingletonStorage.values()) System.out.println(c);
public static CompatibilitySingletonFactory.SingletonStorage 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 © 2007–2020 The Apache Software Foundation. All rights reserved.