public enum BeanReloadStrategy extends Enum<BeanReloadStrategy>
| Enum Constant and Description |
|---|
CLASS_CHANGE |
FIELD_SIGNATURE_CHANGE |
METHOD_FIELD_SIGNATURE_CHANGE |
NEVER |
| Modifier and Type | Method and Description |
|---|---|
static BeanReloadStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanReloadStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanReloadStrategy CLASS_CHANGE
public static final BeanReloadStrategy METHOD_FIELD_SIGNATURE_CHANGE
public static final BeanReloadStrategy FIELD_SIGNATURE_CHANGE
public static final BeanReloadStrategy NEVER
public static BeanReloadStrategy[] values()
for (BeanReloadStrategy c : BeanReloadStrategy.values()) System.out.println(c);
public static BeanReloadStrategy 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 © 2018. All rights reserved.