Package org.openrewrite.java.tree
Enum Flag
- java.lang.Object
-
- java.lang.Enum<Flag>
-
- org.openrewrite.java.tree.Flag
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AbstractDefaultFinalHasInitFlag is set for a variable symbol if the variable's definition has an initializer part.InterfaceNativePotentiallyAmbiguousPrivateProtectedPublicSignaturePolymorphicStaticStrictfpSynchronizedTransientUnionVarargsVolatile
-
Field Summary
Fields Modifier and Type Field Description static longVALID_CLASS_FLAGSstatic longVALID_FLAGS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Set<Flag>bitMapToFlags(long flagsBitMap)Convert the Java language specification's access flags bitmap into a set of Flag enumerations.static longflagsToBitMap(@Nullable java.util.Set<Flag> flags)Converts a set of flag enumerations into the Java Language Specification's access_flags bitmaplonggetBitMask()static booleanhasFlags(long flagsBitMap, Flag... flags)static FlagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Flag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Public
public static final Flag Public
-
Private
public static final Flag Private
-
Protected
public static final Flag Protected
-
Static
public static final Flag Static
-
Final
public static final Flag Final
-
Synchronized
public static final Flag Synchronized
-
Volatile
public static final Flag Volatile
-
Transient
public static final Flag Transient
-
Native
public static final Flag Native
-
Interface
public static final Flag Interface
-
Abstract
public static final Flag Abstract
-
Strictfp
public static final Flag Strictfp
-
HasInit
public static final Flag HasInit
Flag is set for a variable symbol if the variable's definition has an initializer part.
-
Varargs
public static final Flag Varargs
-
Union
public static final Flag Union
-
Default
public static final Flag Default
-
SignaturePolymorphic
public static final Flag SignaturePolymorphic
-
PotentiallyAmbiguous
public static final Flag PotentiallyAmbiguous
-
-
Method Detail
-
values
public static Flag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Flag c : Flag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Flag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getBitMask
public long getBitMask()
-
bitMapToFlags
public static java.util.Set<Flag> bitMapToFlags(long flagsBitMap)
Convert the Java language specification's access flags bitmap into a set of Flag enumerations.- Parameters:
flagsBitMap- The flag from the Javac symbol into a set of rewrite's Flag enum- Returns:
- A set of Flag enums.
-
flagsToBitMap
public static long flagsToBitMap(@Nullable @Nullable java.util.Set<Flag> flags)Converts a set of flag enumerations into the Java Language Specification's access_flags bitmap- Parameters:
flags- A set of Flag enumerations- Returns:
- The bitmask representation of those flags.
-
hasFlags
public static boolean hasFlags(long flagsBitMap, Flag... flags)- Parameters:
flagsBitMap- Java Language Specification's access flags bitmapflags- A set of flags to test- Returns:
- Returns true if the access flags bitmap contains all the flags passed to this method.
-
-