Enum Flag

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Flag>

    public enum Flag
    extends java.lang.Enum<Flag>
    • 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
    • Field Detail

      • VALID_CLASS_FLAGS

        public static final long VALID_CLASS_FLAGS
      • VALID_FLAGS

        public static final long VALID_FLAGS
    • 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 name
        java.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 bitmap
        flags - A set of flags to test
        Returns:
        Returns true if the access flags bitmap contains all the flags passed to this method.