Enum AVStrictType

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

    public enum AVStrictType
    extends java.lang.Enum<AVStrictType>
    implements NamedType
    Type shows how strictly to follow the standards.
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  AVStrictType.Constants  
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      EXPERIMENTAL
      Allow non-standardized experimental things.
      NORMAL
      Allow unofficial extensions.
      STRICT
      Strictly conform to all the things in the spec no matter what the consequences.
      UNOFFICIAL
      Allow unofficial extensions.
      VERY
      Strictly conform to a older more strict version of the spec or reference software.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static AVStrictType findByName​(java.lang.String name)  
      java.lang.String getName()  
      static AVStrictType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AVStrictType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • VERY

        public static final AVStrictType VERY
        Strictly conform to a older more strict version of the spec or reference software.
      • STRICT

        public static final AVStrictType STRICT
        Strictly conform to all the things in the spec no matter what the consequences.
      • NORMAL

        public static final AVStrictType NORMAL
        Allow unofficial extensions.
      • UNOFFICIAL

        public static final AVStrictType UNOFFICIAL
        Allow unofficial extensions.
      • EXPERIMENTAL

        public static final AVStrictType EXPERIMENTAL
        Allow non-standardized experimental things.
    • Method Detail

      • values

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

        public static AVStrictType 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
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface NamedType
      • findByName

        public static AVStrictType findByName​(java.lang.String name)