Package org.jboss.as.controller
Class CaseParameterCorrector
- java.lang.Object
-
- org.jboss.as.controller.CaseParameterCorrector
-
public class CaseParameterCorrector extends Object
Parameter correctors that can be used to change the case of amodel nodethat is oftype string.- Author:
- James R. Perkins
-
-
Field Summary
Fields Modifier and Type Field Description static ParameterCorrectorTO_LOWERConverts the string value of thenewValueinto lowercase only if the value is not already in lowercase.static ParameterCorrectorTO_UPPERConverts the string value of thenewValueinto uppercase only if the value is not already in uppercase.
-
Constructor Summary
Constructors Constructor Description CaseParameterCorrector()
-
-
-
Field Detail
-
TO_UPPER
public static final ParameterCorrector TO_UPPER
Converts the string value of thenewValueinto uppercase only if the value is not already in uppercase.
-
TO_LOWER
public static final ParameterCorrector TO_LOWER
Converts the string value of thenewValueinto lowercase only if the value is not already in lowercase.
-
-