Enum QuotationMark

  • All Implemented Interfaces:
    org.refcodes.mixin.CharAccessor


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

      • 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 Detail

      • values

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

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

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