public enum ReleaseReferencesStrategy extends Enum<ReleaseReferencesStrategy>
Enum Constant and Description |
---|
Aggressive |
None |
Normal |
Modifier and Type | Method and Description |
---|---|
static ReleaseReferencesStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReleaseReferencesStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReleaseReferencesStrategy None
public static final ReleaseReferencesStrategy Normal
public static final ReleaseReferencesStrategy Aggressive
public static ReleaseReferencesStrategy[] values()
for (ReleaseReferencesStrategy c : ReleaseReferencesStrategy.values()) System.out.println(c);
public static ReleaseReferencesStrategy 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 © 2017. All Rights Reserved.