Enum QuotationMark

java.lang.Object
java.lang.Enum<QuotationMark>
org.refcodes.data.QuotationMark
All Implemented Interfaces:
Serializable, Comparable<QuotationMark>, java.lang.constant.Constable, org.refcodes.mixin.CharAccessor

public enum QuotationMark extends Enum<QuotationMark> implements org.refcodes.mixin.CharAccessor
Commonly used characters needful for analyzing, parsing or truncating texts.
  • Enum Constant Details

    • SINGLE_QUOTE

      public static final QuotationMark SINGLE_QUOTE
    • DOUBLE_QUOTE

      public static final QuotationMark DOUBLE_QUOTE
    • SINGLE_GUILLEMET_BEGIN

      public static final QuotationMark SINGLE_GUILLEMET_BEGIN
    • SINGLE_GUILLEMET_END

      public static final QuotationMark SINGLE_GUILLEMET_END
    • DOUBLE_GUILLEMET_BEGIN

      public static final QuotationMark DOUBLE_GUILLEMET_BEGIN
    • DOUBLE_GUILLEMET_END

      public static final QuotationMark DOUBLE_GUILLEMET_END
    • SINGLE_CITATION_BEGIN

      public static final QuotationMark SINGLE_CITATION_BEGIN
    • SINGLE_CITATION_END

      public static final QuotationMark SINGLE_CITATION_END
    • DOUBLE_CITATION_BEGIN

      public static final QuotationMark DOUBLE_CITATION_BEGIN
    • DOUBLE_CITATION_END

      public static final QuotationMark DOUBLE_CITATION_END
  • Method Details

    • values

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

      public static QuotationMark 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
    • getChar

      public char getChar()
      Specified by:
      getChar in interface org.refcodes.mixin.CharAccessor