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 StringclassNamestatic QNameCOMPLEX_TYPEstatic QNameF_CLASS_NAMEstatic QNameF_LOWERCASEstatic QNameF_NFKDstatic QNameF_TRIMstatic QNameF_TRIM_WHITESPACEprotected Booleanlowercaseprotected Booleannfkdprotected Booleantrimprotected BooleantrimWhitespace
-
Constructor Summary
Constructors Constructor Description PolyStringNormalizerConfigurationType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PolyStringNormalizerConfigurationTypeclone()booleanequals(Object obj)StringgetClassName()inthashCode()BooleanisLowercase()BooleanisNfkd()BooleanisTrim()BooleanisTrimWhitespace()voidsetClassName(String className)voidsetLowercase(Boolean lowercase)voidsetNfkd(Boolean nfkd)voidsetTrim(Boolean trim)voidsetTrimWhitespace(Boolean trimWhitespace)voidshortDump(StringBuilder sb)Show the content of the object intended for diagnostics.StringtoString()-
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:ShortDumpableShow 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:
shortDumpin interfaceShortDumpable- Parameters:
sb- StringBuilder to which to a compact one-line content of the object intended for diagnostics by system administrator should be appended.
-
-