Class PolyStringNormalizerConfigurationType
- java.lang.Object
-
- com.evolveum.prism.xml.ns._public.types_3.PolyStringNormalizerConfigurationType
-
- All Implemented Interfaces:
ShortDumpable
,Serializable
,Cloneable
public class PolyStringNormalizerConfigurationType extends Object implements Serializable, Cloneable, ShortDumpable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
className
static QName
COMPLEX_TYPE
static QName
F_CLASS_NAME
static QName
F_LOWERCASE
static QName
F_NFKD
static QName
F_TRIM
static QName
F_TRIM_WHITESPACE
protected Boolean
lowercase
protected Boolean
nfkd
protected Boolean
trim
protected Boolean
trimWhitespace
-
Constructor Summary
Constructors Constructor Description PolyStringNormalizerConfigurationType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PolyStringNormalizerConfigurationType
clone()
boolean
equals(Object obj)
String
getClassName()
int
hashCode()
Boolean
isLowercase()
Boolean
isNfkd()
Boolean
isTrim()
Boolean
isTrimWhitespace()
void
setClassName(String className)
void
setLowercase(Boolean lowercase)
void
setNfkd(Boolean nfkd)
void
setTrim(Boolean trim)
void
setTrimWhitespace(Boolean trimWhitespace)
void
shortDump(StringBuilder sb)
Show the content of the object intended for diagnostics.String
toString()
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.ShortDumpable
shortDump, shortDumpLazily
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_CLASS_NAME
public static final QName F_CLASS_NAME
-
F_TRIM
public static final QName F_TRIM
-
F_NFKD
public static final QName F_NFKD
-
F_TRIM_WHITESPACE
public static final QName F_TRIM_WHITESPACE
-
F_LOWERCASE
public static final QName F_LOWERCASE
-
className
protected String className
-
trim
protected Boolean trim
-
nfkd
protected Boolean nfkd
-
trimWhitespace
protected Boolean trimWhitespace
-
lowercase
protected Boolean lowercase
-
-
Method Detail
-
getClassName
public String getClassName()
-
setClassName
public void setClassName(String className)
-
isTrim
public Boolean isTrim()
-
setTrim
public void setTrim(Boolean trim)
-
isNfkd
public Boolean isNfkd()
-
setNfkd
public void setNfkd(Boolean nfkd)
-
isTrimWhitespace
public Boolean isTrimWhitespace()
-
setTrimWhitespace
public void setTrimWhitespace(Boolean trimWhitespace)
-
isLowercase
public Boolean isLowercase()
-
setLowercase
public void setLowercase(Boolean lowercase)
-
clone
public PolyStringNormalizerConfigurationType clone()
-
shortDump
public void shortDump(StringBuilder sb)
Description copied from interface:ShortDumpable
Show the content of the object intended for diagnostics. This method is supposed to append a compact, human-readable output in a single line. Unlike toString() method, there is no requirement to identify the actual class or type of the object. It is assumed that the class/type will be obvious from the context in which the output is used.- Specified by:
shortDump
in interfaceShortDumpable
- Parameters:
sb
- StringBuilder to which to a compact one-line content of the object intended for diagnostics by system administrator should be appended.
-
-