All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.applic.publication.html.Category Maven / Gradle / Ivy

There is a newer version: 0.13.2
Show newest version
package cdc.applic.publication.html;

/**
 * Enumeration of possible categories of text to which a style can be associated.
 *
 * @author Damien Carbonne
 */
public enum Category {
    /** Text is anything. Used when no specific value is set. */
    DEFAULT,
    /** Text is informal expression. */
    INFORMAL,
    /** Text is a valid value (boolean, integer, string, real), or the empty set symbol. */
    VALUE,
    /** Text is an invalid value. */
    INVALID_VALUE,
    /** Text is a value whose validity is unknown. This is related to an unknown property. */
    UNKNOWN_VALUE,
    /** Text is a delimiter ({, }, ~, (, )). */
    DELIMITER,
    /** Text is an operator ({@code =, !=, <, ...}). */
    OPERATOR,
    /** Text is a prefix. */
    PREFIX,
    /** Text is a known property local name. */
    PROPERTY,
    /** Text is a known alias local name. */
    ALIAS,
    /** Text is unknown property or alias local name or prefix. */
    INVALID_NAME,
    /** Text is a space. */
    SPACE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy