Enum UMailbox.RuleNames

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

    public static enum UMailbox.RuleNames
    extends java.lang.Enum<UMailbox.RuleNames>
    This enum provides easy to remember enum constants for locating the rule identifiers and names. The enum constants have the same spelling as the rule names rendered in all caps with underscores replacing hyphens.
    • Enum Constant Detail

      • ADDRESS_LITERAL

        public static final UMailbox.RuleNames ADDRESS_LITERAL
        id = 4, name = "address-literal"
      • COMPRESSION

        public static final UMailbox.RuleNames COMPRESSION
        id = 17, name = "compression"
      • DOMAIN_PART

        public static final UMailbox.RuleNames DOMAIN_PART
        id = 1, name = "Domain-part"
      • DOT_STRING

        public static final UMailbox.RuleNames DOT_STRING
        id = 6, name = "Dot-string"
      • GENERAL_ADDRESS_LITERAL

        public static final UMailbox.RuleNames GENERAL_ADDRESS_LITERAL
        id = 13, name = "General-address-literal"
      • IPV4_ADDRESS_LITERAL

        public static final UMailbox.RuleNames IPV4_ADDRESS_LITERAL
        id = 11, name = "IPv4-address-literal"
      • IPV6_ADDRESS_LITERAL

        public static final UMailbox.RuleNames IPV6_ADDRESS_LITERAL
        id = 12, name = "IPv6-address-literal"
      • IPV6V4_COMP

        public static final UMailbox.RuleNames IPV6V4_COMP
        id = 19, name = "IPv6v4-comp"
      • IPV6V4_FULL

        public static final UMailbox.RuleNames IPV6V4_FULL
        id = 18, name = "IPv6v4-full"
      • LOCAL_PART

        public static final UMailbox.RuleNames LOCAL_PART
        id = 5, name = "Local-part"
      • QCONTENTSMTP

        public static final UMailbox.RuleNames QCONTENTSMTP
        id = 8, name = "QcontentSMTP"
      • QUOTED_PAIRSMTP

        public static final UMailbox.RuleNames QUOTED_PAIRSMTP
        id = 9, name = "quoted-pairSMTP"
      • QUOTED_STRING

        public static final UMailbox.RuleNames QUOTED_STRING
        id = 7, name = "Quoted-string"
      • SUB_DOMAIN

        public static final UMailbox.RuleNames SUB_DOMAIN
        id = 3, name = "sub-domain"
    • Method Detail

      • values

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

        public static UMailbox.RuleNames 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
      • ruleName

        public java.lang.String ruleName()
        Associates the enum with the original grammar name of the rule it represents.
        Returns:
        the original grammar rule name.
      • ruleID

        public int ruleID()
        Associates the enum with an identifier for the grammar rule it represents.
        Returns:
        the rule name identifier.