public enum FieldManifestation extends Enum<FieldManifestation> implements ModifierContributor.ForField
ModifierContributor.ForField, ModifierContributor.ForMethod, ModifierContributor.ForParameter, ModifierContributor.ForType, ModifierContributor.Resolver<T extends ModifierContributor>| Enum Constant and Description |
|---|
FINAL
Modifier for a final field.
|
PLAIN
Modifier for a non-final, non-volatile field.
|
TRANSIENT
Modifier for a transient field.
|
VOLATILE
Modifier for a volatile field.
|
VOLATILE_TRANSIENT
Modifier for a volatile, transient field.
|
MASKEMPTY_MASK| Modifier and Type | Method and Description |
|---|---|
int |
getMask()
Returns the mask of this modifier.
|
int |
getRange()
Returns the entire range of modifiers that address this contributor's property.
|
boolean |
isDefault()
Determines if this is the default modifier.
|
boolean |
isFinal()
Returns
true if this manifestation represents a final type. |
boolean |
isPlain()
Returns
true if this manifestation represents a field that is neither final, transient or volatile. |
boolean |
isTransient()
Returns
true if this manifestation represents a field that is transient. |
boolean |
isVolatile()
Returns
true if this manifestation represents a volatile type. |
static FieldManifestation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldManifestation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldManifestation PLAIN
public static final FieldManifestation FINAL
public static final FieldManifestation VOLATILE
public static final FieldManifestation TRANSIENT
public static final FieldManifestation VOLATILE_TRANSIENT
public static FieldManifestation[] values()
for (FieldManifestation c : FieldManifestation.values()) System.out.println(c);
public static FieldManifestation 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 nullpublic int getMask()
ModifierContributorgetMask in interface ModifierContributorpublic int getRange()
ModifierContributorgetRange in interface ModifierContributorpublic boolean isDefault()
ModifierContributorisDefault in interface ModifierContributortrue if this contributor represents the default modifier.public boolean isFinal()
true if this manifestation represents a final type.true if this manifestation represents a final type.public boolean isVolatile()
true if this manifestation represents a volatile type.true if this manifestation represents a volatile type.public boolean isTransient()
true if this manifestation represents a field that is transient.true if this manifestation represents a field that is transient.public boolean isPlain()
true if this manifestation represents a field that is neither final, transient or volatile.true if this manifestation represents a field that is neither final, transient or volatile.Copyright © 2014–2017. All rights reserved.