Enum UIniFile.UdtNames

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

    public static enum UIniFile.UdtNames
    extends java.lang.Enum<UIniFile.UdtNames>
    This enum provides easy to remember enum constants for locating the UDT identifiers and names. The enum constants have the same spelling as the UDT names rendered in all caps with underscores replacing hyphens.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int udtID()
      Associates the enum with an identifier for the UDT it represents.
      boolean udtMayBeEmpty()
      Associates the enum with the "empty" attribute of the UDT it represents.
      java.lang.String udtName()
      Associates the enum with the original grammar name of the UDT it represents.
      static UIniFile.UdtNames valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static UIniFile.UdtNames[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

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

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

      • E_COMMENT_WSP

        public static final UIniFile.UdtNames E_COMMENT_WSP
        id = 0, name = "e_comment-wsp"
      • U_ALPHADIGIT

        public static final UIniFile.UdtNames U_ALPHADIGIT
        id = 6, name = "u_alphadigit"
      • U_ALPHADIGITUNDER

        public static final UIniFile.UdtNames U_ALPHADIGITUNDER
        id = 5, name = "u_alphadigitunder"
      • U_COMMENT

        public static final UIniFile.UdtNames U_COMMENT
        id = 3, name = "u_comment"
      • U_DQSTRING

        public static final UIniFile.UdtNames U_DQSTRING
        id = 7, name = "u_dqstring"
      • U_LINEEND

        public static final UIniFile.UdtNames U_LINEEND
        id = 1, name = "u_lineend"
      • U_SQSTRING

        public static final UIniFile.UdtNames U_SQSTRING
        id = 8, name = "u_sqstring"
    • Method Detail

      • values

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

        public static UIniFile.UdtNames 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
      • udtName

        public java.lang.String udtName()
        Associates the enum with the original grammar name of the UDT it represents.
        Returns:
        the original grammar UDT name.
      • udtID

        public int udtID()
        Associates the enum with an identifier for the UDT it represents.
        Returns:
        the UDT identifier.
      • udtMayBeEmpty

        public boolean udtMayBeEmpty()
        Associates the enum with the "empty" attribute of the UDT it represents.
        Returns:
        the "empty" attribute. True if the UDT name begins with "e_", false if it begins with "u_".