Uses of Enum
com.aoapps.hodgepodge.i18n.MarkupType

Packages that use MarkupType
Package
Description
 
  • Uses of MarkupType in com.aoapps.hodgepodge.i18n

    Methods in com.aoapps.hodgepodge.i18n that return MarkupType
    Modifier and Type
    Method
    Description
    static MarkupType
    MarkupType.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static MarkupType[]
    MarkupType.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in com.aoapps.hodgepodge.i18n with parameters of type MarkupType
    Modifier and Type
    Method
    Description
    static void
    MarkupCoercion.append(Object value, MarkupType markupType, boolean encodeLookupMarkup, Encoder encoder, boolean encoderPrefixSuffix, Appendable out)
    Encodes an object's String representation with markup enabled using the provided encoder, supporting streaming for specialized types.
    static void
    MarkupCoercion.append(Object value, MarkupType markupType, boolean encodeLookupMarkup, Encoder encoder, boolean encoderPrefixSuffix, Appendable out, boolean outOptimized)
    Encodes an object's String representation with markup enabled using the provided encoder, supporting streaming for specialized types.
    static void
    MarkupCoercion.append(Object value, MarkupType markupType, Appendable out)
    Appends an object's String representation with markup enabled, supporting streaming for specialized types.
    static void
    MarkupCoercion.append(Object value, MarkupType markupType, Appendable out, boolean outOptimized)
    Appends an object's String representation with markup enabled, supporting streaming for specialized types.
    void
    BundleLookupMarkup.appendPrefixTo(MarkupType markupType, Encoder encoder, Appendable out)
    Appends the prefix to the given out using the given encoder and markup type.
    void
    BundleLookupMarkup.appendPrefixTo(MarkupType markupType, Appendable out)
    Appends the prefix to the given out using the given markup type.
    void
    BundleLookupMarkup.appendSuffixTo(MarkupType markupType, Encoder encoder, Appendable out)
    Appends the suffix to the given out using the given encoder and markup type.
    void
    BundleLookupMarkup.appendSuffixTo(MarkupType markupType, Appendable out)
    Appends the suffix to the given out using the given markup type.
    static void
    MarkupCoercion.write(Object value, MarkupType markupType, boolean encodeLookupMarkup, Encoder encoder, boolean encoderPrefixSuffix, Writer out)
    Encodes an object's String representation with markup enabled using the provided encoder, supporting streaming for specialized types.
    static void
    MarkupCoercion.write(Object value, MarkupType markupType, boolean encodeLookupMarkup, Encoder encoder, boolean encoderPrefixSuffix, Writer out, boolean outOptimized)
    Encodes an object's String representation with markup enabled using the provided encoder, supporting streaming for specialized types.
    static void
    MarkupCoercion.write(Object value, MarkupType markupType, Writer out)
    Writes an object's String representation with markup enabled, supporting streaming for specialized types.
    static void
    MarkupCoercion.write(Object value, MarkupType markupType, Writer out, boolean outOptimized)
    Writes an object's String representation with markup enabled, supporting streaming for specialized types.