Uses of Enum
org.unbescape.properties.PropertiesValueEscapeLevel
Packages that use PropertiesValueEscapeLevel
-
Uses of PropertiesValueEscapeLevel in org.unbescape.properties
Subclasses with type arguments of type PropertiesValueEscapeLevel in org.unbescape.propertiesModifier and TypeClassDescriptionenumLevels defined for Java Properties escape/unescape operations:Methods in org.unbescape.properties that return PropertiesValueEscapeLevelModifier and TypeMethodDescriptionstatic PropertiesValueEscapeLevelPropertiesValueEscapeLevel.forLevel(int level) Utility method for obtaining an enum value from its corresponding int level value.static PropertiesValueEscapeLevelReturns 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 PropertiesValueEscapeLevelModifier and TypeMethodDescription(package private) static voidPropertiesValueEscapeUtil.escape(char[] text, int offset, int len, Writer writer, PropertiesValueEscapeLevel escapeLevel) (package private) static voidPropertiesValueEscapeUtil.escape(Reader reader, Writer writer, PropertiesValueEscapeLevel escapeLevel) (package private) static StringPropertiesValueEscapeUtil.escape(String text, PropertiesValueEscapeLevel escapeLevel) static voidPropertiesEscape.escapePropertiesValue(char[] text, int offset, int len, Writer writer, PropertiesValueEscapeLevel level) Perform a (configurable) Java Properties Value escape operation on a String input.static voidPropertiesEscape.escapePropertiesValue(Reader reader, Writer writer, PropertiesValueEscapeLevel level) Perform a (configurable) Java Properties Value escape operation on a Reader input, writing results to a Writer.static voidPropertiesEscape.escapePropertiesValue(String text, Writer writer, PropertiesValueEscapeLevel level) Perform a (configurable) Java Properties Value escape operation on a String input, writing results to a Writer.static StringPropertiesEscape.escapePropertiesValue(String text, PropertiesValueEscapeLevel level) Perform a (configurable) Java Properties Value escape operation on a String input.