Enum ModifierKind

  • All Implemented Interfaces:
    Serializable, Comparable<ModifierKind>

    public enum ModifierKind
    extends Enum<ModifierKind>
    Represents a modifier on the declaration of a program element such as a class, method, or field. The order is important, because it is always pretty--printed is this order, enabling to have a JLS-compliant, checkstyle compliant generated code (thanks to EnumSet used for modifiers).
    • Enum Constant Detail

      • PUBLIC

        public static final ModifierKind PUBLIC
        The modifier public
      • PROTECTED

        public static final ModifierKind PROTECTED
        The modifier protected
      • PRIVATE

        public static final ModifierKind PRIVATE
        The modifier private
      • ABSTRACT

        public static final ModifierKind ABSTRACT
        The modifier abstract
      • STATIC

        public static final ModifierKind STATIC
        The modifier static
      • FINAL

        public static final ModifierKind FINAL
        The modifier final
      • TRANSIENT

        public static final ModifierKind TRANSIENT
        The modifier transient
      • VOLATILE

        public static final ModifierKind VOLATILE
        The modifier volatile
      • SYNCHRONIZED

        public static final ModifierKind SYNCHRONIZED
        The modifier synchronized
      • NATIVE

        public static final ModifierKind NATIVE
        The modifier native
      • STRICTFP

        public static final ModifierKind STRICTFP
        The modifier strictfp
    • Method Detail

      • values

        public static ModifierKind[] 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 (ModifierKind c : ModifierKind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ModifierKind valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null