Enum CodesystemAltcodeKind

    • Enum Constant Detail

      • ALTERNATE

        public static final CodesystemAltcodeKind ALTERNATE
        The code is an alternative code that can be used in any of the circumstances that the primary code can be used.
      • CASEINSENSITIVE

        public static final CodesystemAltcodeKind CASEINSENSITIVE
        The code is an alternative to be used when a case insensitive code is required (when the primary codes are case sensitive).
      • CASESENSITIVE

        public static final CodesystemAltcodeKind CASESENSITIVE
        The code is an alternative to be used when a case sensitive code is required (when the primary codes are case insensitive).
      • EXPRESSION

        public static final CodesystemAltcodeKind EXPRESSION
        The code is an alternative for the primary code that is built using the expression grammar defined by the code system.
    • Method Detail

      • values

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

        public static CodesystemAltcodeKind 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