Uses of Class
org.unbescape.properties.PropertiesValueEscapeLevel
-
Packages that use PropertiesValueEscapeLevel Package Description org.unbescape.properties -
-
Uses of PropertiesValueEscapeLevel in org.unbescape.properties
Methods in org.unbescape.properties that return PropertiesValueEscapeLevel Modifier and Type Method Description static PropertiesValueEscapeLevel
PropertiesValueEscapeLevel. forLevel(int level)
Utility method for obtaining an enum value from its corresponding int level value.static PropertiesValueEscapeLevel
PropertiesValueEscapeLevel. valueOf(String name)
Returns the enum constant of this type with the specified name.static PropertiesValueEscapeLevel[]
PropertiesValueEscapeLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.unbescape.properties with parameters of type PropertiesValueEscapeLevel Modifier and Type Method Description static void
PropertiesEscape. escapePropertiesValue(char[] text, int offset, int len, java.io.Writer writer, PropertiesValueEscapeLevel level)
Perform a (configurable) Java Properties Value escape operation on a String input.static void
PropertiesEscape. escapePropertiesValue(java.io.Reader reader, java.io.Writer writer, PropertiesValueEscapeLevel level)
Perform a (configurable) Java Properties Value escape operation on a Reader input, writing results to a Writer.static void
PropertiesEscape. escapePropertiesValue(String text, java.io.Writer writer, PropertiesValueEscapeLevel level)
Perform a (configurable) Java Properties Value escape operation on a String input, writing results to a Writer.static String
PropertiesEscape. escapePropertiesValue(String text, PropertiesValueEscapeLevel level)
Perform a (configurable) Java Properties Value escape operation on a String input.
-