Enum Clazz.QUERY

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Clazz.QUERY>
    Enclosing class:
    Clazz

    public static enum Clazz.QUERY
    extends java.lang.Enum<Clazz.QUERY>
    • Enum Constant Detail

      • IMPLEMENTS

        public static final Clazz.QUERY IMPLEMENTS
      • INDIRECTLY_ANNOTATED

        public static final Clazz.QUERY INDIRECTLY_ANNOTATED
      • HIERARCHY_ANNOTATED

        public static final Clazz.QUERY HIERARCHY_ANNOTATED
      • HIERARCHY_INDIRECTLY_ANNOTATED

        public static final Clazz.QUERY HIERARCHY_INDIRECTLY_ANNOTATED
      • RUNTIMEANNOTATIONS

        public static final Clazz.QUERY RUNTIMEANNOTATIONS
      • CLASSANNOTATIONS

        public static final Clazz.QUERY CLASSANNOTATIONS
      • DEFAULT_CONSTRUCTOR

        public static final Clazz.QUERY DEFAULT_CONSTRUCTOR
    • Method Detail

      • values

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

        public static Clazz.QUERY 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