Enum Class Charset

java.lang.Object
java.lang.Enum<Charset>
net.ihe.gazelle.hl7v3.voc.Charset
All Implemented Interfaces:
Serializable, Comparable<Charset>, Constable

public enum Charset extends Enum<Charset>
Description of the enumeration Charset.
  • Enum Constant Details

    • EBCDIC

      public static final Charset EBCDIC
    • ISO10646UCS2

      public static final Charset ISO10646UCS2
    • ISO10646UCS4

      public static final Charset ISO10646UCS4
    • ISO88591

      public static final Charset ISO88591
    • ISO88592

      public static final Charset ISO88592
    • ISO88595

      public static final Charset ISO88595
    • JIS2022JP

      public static final Charset JIS2022JP
    • USASCII

      public static final Charset USASCII
    • UTF7

      public static final Charset UTF7
    • UTF8

      public static final Charset UTF8
  • Method Details

    • values

      public static Charset[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Charset valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static Charset fromValue(String v)