Uses of Interface
org.omnifaces.validator.MultiFieldValidator
-
Packages that use MultiFieldValidator Package Description org.omnifaces.component.validator -
-
Uses of MultiFieldValidator in org.omnifaces.component.validator
Classes in org.omnifaces.component.validator that implement MultiFieldValidator Modifier and Type Class Description classValidateAllThe<o:validateAll>validates if ALL of the givenUIInputcomponents have been filled out.classValidateAllOrNoneThe<o:validateAllOrNone>validates if at least ALL of the givenUIInputcomponents have been filled out or that NONE of the givenUIInputcomponents have been filled out.classValidateEqualThe<o:validateEqual>validates if ALL of the givenUIInputcomponents have the same value.classValidateMultipleThe<o:validateMultiple>allows the developer to validate multiple fields by either a custom validator method:classValidateMultipleFieldsBase class which is to be shared between all multi field validators.classValidateOneThe<o:validateOne>validates if ONLY ONE of the givenUIInputcomponents have been filled out.classValidateOneOrMoreThe<o:validateOneOrMore>validates if at least ONE of the givenUIInputcomponents has been filled out.classValidateOneOrNoneclassValidateOrderThe<o:validateOrder>validates if the values of the givenUIInputcomponents as specified in thecomponentsattribute are in the order as specified by thetypeattribute which accepts the following values:lt(default): from least to greatest, without duplicates.lte: from least to greatest, allowing duplicates (equal values next to each other).gt: from greatest to least, without duplicates.gte: from greatest to least, allowing duplicates (equal values next to each other).classValidateUniqueThe<o:validateUnique>validates if ALL of the givenUIInputcomponents have an unique value.Methods in org.omnifaces.component.validator that return MultiFieldValidator Modifier and Type Method Description MultiFieldValidatorValidateMultiple. getValidator()Returns the validator instance.Methods in org.omnifaces.component.validator with parameters of type MultiFieldValidator Modifier and Type Method Description voidValidateMultiple. setValidator(MultiFieldValidator validator)Sets the validator instance.
-