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

cdc.applic.expressions.literals.EscapingMode Maven / Gradle / Ivy

The newest version!
package cdc.applic.expressions.literals;

/**
 * Enumeration of literal escaping modes.
 *
 * @author Damien Carbonne
 */
public enum EscapingMode {
    /**
     * The literal is not escaped, whether it is necessary or not.
     */
    NON_ESCAPED,

    /**
     * The literal is escaped, whether it is necessary or not.
     */
    ESCAPED,

    /**
     * The literal is safe to be used in a particular context.
     * 

* It is escaped if necessary, not escaped otherwise. */ PROTECTED }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy