@DoNotObfuscate public enum WhitespaceProcessing extends java.lang.Enum<WhitespaceProcessing>
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
process(java.lang.String stringWithWhitespaces)  | 
abstract java.lang.String | 
processLocal(java.lang.String stringWithWhitespaces)  | 
static WhitespaceProcessing | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static WhitespaceProcessing[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final WhitespaceProcessing NORMALIZE
public static final WhitespaceProcessing KEEP
public static final WhitespaceProcessing IGNORE
public static WhitespaceProcessing[] values()
for (WhitespaceProcessing c : WhitespaceProcessing.values()) System.out.println(c);
public static WhitespaceProcessing valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String process(java.lang.String stringWithWhitespaces)
public abstract java.lang.String processLocal(java.lang.String stringWithWhitespaces)
Copyright (C) PDFUnit.com. See here for license.