public enum SkipPropertyMapping extends Enum<SkipPropertyMapping>
@PropertyMapping is skipped.| Enum Constant and Description |
|---|
NO
Don't skip mapping the property.
|
ON_DEFAULT_VALUE
Skip mapping the property when the default attribute value is specified.
|
YES
Skip mapping the property.
|
| Modifier and Type | Method and Description |
|---|---|
static SkipPropertyMapping |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SkipPropertyMapping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkipPropertyMapping YES
public static final SkipPropertyMapping ON_DEFAULT_VALUE
public static final SkipPropertyMapping NO
public static SkipPropertyMapping[] values()
for (SkipPropertyMapping c : SkipPropertyMapping.values()) System.out.println(c);
public static SkipPropertyMapping 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 null