cdc.applic.expressions.literals.EscapingMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
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