Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X Y 

V

validate(FacesContext, UIComponent, Object) - Method in class org.omnifaces.taghandler.ValidateBean.CollectingValidator
 
validate(FacesContext, UIComponent, Object) - Method in class org.omnifaces.validator.RequiredCheckboxValidator
 
validate(FacesContext, UIComponent, Object) - Method in class org.omnifaces.validator.ValueChangeValidator
If the component is an instance of EditableValueHolder and its old object value is equal to the submitted value, then return immediately from the method and don't perform any validation.
ValidateAll - Class in org.omnifaces.component.validator
The <o:validateAll> validates if ALL of the given UIInput components have been filled out.
ValidateAll() - Constructor for class org.omnifaces.component.validator.ValidateAll
 
ValidateAllOrNone - Class in org.omnifaces.component.validator
The <o:validateAllOrNone> validates if at least ALL of the given UIInput components have been filled out or that NONE of the given UIInput components have been filled out.
ValidateAllOrNone() - Constructor for class org.omnifaces.component.validator.ValidateAllOrNone
 
ValidateBean - Class in org.omnifaces.taghandler
The <o:validateBean> allows the developer to control bean validation on a per-UICommand or UIInput component basis, as well as validating a given bean at the class level.
ValidateBean(TagConfig) - Constructor for class org.omnifaces.taghandler.ValidateBean
The tag constructor.
ValidateBean.CollectingValidator - Class in org.omnifaces.taghandler
 
validateChangedObject(FacesContext, UIComponent, Object) - Method in class org.omnifaces.validator.ValueChangeValidator
Use this method instead of ValueChangeValidator.validate(FacesContext, UIComponent, Object) if you intend to perform the validation only when the submitted value is really changed as compared to the model value.
validateComponents(FacesContext) - Method in class org.omnifaces.component.validator.ValidateMultipleFields
If the validation is not disabled, collect the components, if it is not empty, then collect their values and delegate to MultiFieldValidator.validateValues(FacesContext, List, List).
validateComponents(FacesContext) - Method in class org.omnifaces.component.validator.ValidatorFamily
Perform the actual validation.
ValidateEqual - Class in org.omnifaces.component.validator
The <o:validateEqual> validates if ALL of the given UIInput components have the same value.
ValidateEqual() - Constructor for class org.omnifaces.component.validator.ValidateEqual
 
validateHasDirectParent(UIComponent, Class<C>) - Static method in class org.omnifaces.util.Components
Validate if the given component has a direct parent of the given parent type.
validateHasNoChildren(UIComponent) - Static method in class org.omnifaces.util.Components
Validate if the given component has no children.
validateHasParent(UIComponent, Class<C>) - Static method in class org.omnifaces.util.Components
Validate if the given component has a parent of the given parent type.
validateHierarchy() - Method in class org.omnifaces.component.tree.Tree
Validate the component hierarchy.
validateHierarchy() - Method in class org.omnifaces.component.tree.TreeFamily
Validate the component hierarchy.
validateHierarchy() - Method in class org.omnifaces.component.tree.TreeInsertChildren
Validate the component hierarchy.
validateHierarchy() - Method in class org.omnifaces.component.tree.TreeNode
Validate the component hierarchy.
validateHierarchy() - Method in class org.omnifaces.component.tree.TreeNodeItem
Validate the component hierarchy.
validateHierarchy() - Method in class org.omnifaces.component.validator.ValidateMultipleFields
Validate our component hierarchy.
validateHierarchy() - Method in class org.omnifaces.component.validator.ValidatorFamily
Validate our own component hierarchy.
ValidateMultiple - Class in org.omnifaces.component.validator
The <o:validateMultiple> allows the developer to validate multiple fields by either a custom validator method:
ValidateMultiple() - Constructor for class org.omnifaces.component.validator.ValidateMultiple
 
ValidateMultipleFields - Class in org.omnifaces.component.validator
Base class which is to be shared between all multi field validators.
ValidateMultipleFields() - Constructor for class org.omnifaces.component.validator.ValidateMultipleFields
The default constructor sets the default message and sets the renderer type to null.
ValidateMultipleHandler - Class in org.omnifaces.component.validator
A handler for ValidateMultiple component, which will take care of setting the validator attribute the right way as either ValueExpression or MethodExpression.
ValidateMultipleHandler(ComponentConfig) - Constructor for class org.omnifaces.component.validator.ValidateMultipleHandler
Construct the tag handler for ValidateMultiple component.
ValidateOne - Class in org.omnifaces.component.validator
The <o:validateOne> validates if ONLY ONE of the given UIInput components have been filled out.
ValidateOne() - Constructor for class org.omnifaces.component.validator.ValidateOne
 
ValidateOneOrMore - Class in org.omnifaces.component.validator
The <o:validateOneOrMore> validates if at least ONE of the given UIInput components has been filled out.
ValidateOneOrMore() - Constructor for class org.omnifaces.component.validator.ValidateOneOrMore
 
ValidateOneOrNone - Class in org.omnifaces.component.validator
The <o:validateOneOrNone> validates if ONLY ONE of the given UIInput components has been filled out or that NONE of the given UIInput components have been filled out.
ValidateOneOrNone() - Constructor for class org.omnifaces.component.validator.ValidateOneOrNone
 
ValidateOrder - Class in org.omnifaces.component.validator
The <o:validateOrder> validates if the values of the given UIInput components as specified in the components attribute are in the order as specified by the type attribute 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).
ValidateOrder() - Constructor for class org.omnifaces.component.validator.ValidateOrder
 
ValidateUnique - Class in org.omnifaces.component.validator
The <o:validateUnique> validates if ALL of the given UIInput components have an unique value.
ValidateUnique() - Constructor for class org.omnifaces.component.validator.ValidateUnique
 
ValidateUniqueColumn - Class in org.omnifaces.taghandler
The <o:validateUniqueColumn> validates if the given UIInput component in an UIData component has an unique value throughout all rows, also those not visible by pagination.
ValidateUniqueColumn(TagConfig) - Constructor for class org.omnifaces.taghandler.ValidateUniqueColumn
The tag constructor.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateAll
Validate if all is filled out.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateAllOrNone
Validate if all or none is filled out.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateEqual
Validate if all values are equal.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateMultiple
Invoke the validator and return its outcome.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateOne
Validate if only one is filled out.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateOneOrMore
Validate if at least one is filled out.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateOneOrNone
Validate if only one or none is filled out.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateOrder
Validate if all values are in specified order.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in class org.omnifaces.component.validator.ValidateUnique
Validate if all values are unique.
validateValues(FacesContext, List<UIInput>, List<Object>) - Method in interface org.omnifaces.validator.MultiFieldValidator
Perform the validation on the collected values of the input components and returns whether the validation is successful.
validationFailed() - Static method in class org.omnifaces.util.Faces
Signals JSF that the validations phase of the current request has failed.
Validator - Class in org.omnifaces.taghandler
The <o:validator> is a taghandler that extends the standard <f:validator> tag family with support for deferred value expressions in all attributes.
Validator(ValidatorConfig) - Constructor for class org.omnifaces.taghandler.Validator
The constructor.
Validator.DeferredValidator - Class in org.omnifaces.taghandler
So that we can have a serializable validator.
validatorAttributes() - Method in class org.omnifaces.cdi.param.DynamicParamValueProducer.DefaultParamAnnotationLiteral
 
validatorClasses() - Method in class org.omnifaces.cdi.param.DynamicParamValueProducer.DefaultParamAnnotationLiteral
 
ValidatorFamily - Class in org.omnifaces.component.validator
Base class which is to be shared between all components of the Validator family.
ValidatorFamily() - Constructor for class org.omnifaces.component.validator.ValidatorFamily
 
ValidatorManager - Class in org.omnifaces.cdi.validator
The @FacesValidator is by default not eligible for dependency injection by @Inject nor @EJB.
ValidatorManager() - Constructor for class org.omnifaces.cdi.validator.ValidatorManager
 
validatorMessage() - Method in class org.omnifaces.cdi.param.DynamicParamValueProducer.DefaultParamAnnotationLiteral
 
validators() - Method in class org.omnifaces.cdi.param.DynamicParamValueProducer.DefaultParamAnnotationLiteral
 
VALUE_SET - Static variable in class org.omnifaces.component.output.Cache
 
ValueChangeConverter - Class in org.omnifaces.converter
By default, JSF converters run on every request, regardless of whether the submitted value has changed or not.
ValueChangeConverter() - Constructor for class org.omnifaces.converter.ValueChangeConverter
 
ValueChangeValidator - Class in org.omnifaces.validator
By default, JSF validators run on every request, regardless of whether the submitted value has changed or not.
ValueChangeValidator() - Constructor for class org.omnifaces.validator.ValueChangeValidator
 
ValueExpressionWrapper - Class in org.omnifaces.el
 
ValueExpressionWrapper(ValueExpression) - Constructor for class org.omnifaces.el.ValueExpressionWrapper
 
valueOf(String) - Static method in enum org.omnifaces.component.util.MoveComponent.Destination
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.config.BeanManager
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.config.FacesConfigXml
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.config.WebXml
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.facesviews.ExtensionAction
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.facesviews.FacesServletDispatchMethod
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.facesviews.PathAction
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.omnifaces.facesviews.ViewHandlerMode
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.omnifaces.component.util.MoveComponent.Destination
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.config.BeanManager
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.config.FacesConfigXml
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.config.WebXml
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.facesviews.ExtensionAction
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.facesviews.FacesServletDispatchMethod
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.facesviews.PathAction
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.omnifaces.facesviews.ViewHandlerMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in class org.omnifaces.util.concurrentlinkedhashmap.ConcurrentLinkedHashMap
 
values() - Method in class org.omnifaces.util.MapWrapper
 
VetoAnnotatedTypeExtension - Class in org.omnifaces
This CDI extension should tell the CDI implementation to register from the org.omnifaces package only the classes from org.omnifaces.cdi and org.omnifaces.showcase subpackages as CDI managed beans.
VetoAnnotatedTypeExtension() - Constructor for class org.omnifaces.VetoAnnotatedTypeExtension
 
ViewAction - Class in org.omnifaces.component.input
The <o:viewAction> is a component that extends the standard <f:viewAction> and changes the if attribute to be evaluated during INVOKE_APPLICATION phase instead of the APPLY_REQUEST_VALUES phase.
ViewAction() - Constructor for class org.omnifaces.component.input.ViewAction
 
ViewHandlerMode - Enum in org.omnifaces.facesviews
The mode of the view handler with respect to constructing an action URL.
ViewParam - Class in org.omnifaces.component.input
The <o:viewParam> is a component that extends the standard <f:viewParam> and provides a stateless mode of operation and fixes the issue wherein null model values are converted to empty string parameters in query string (e.g.
ViewParam() - Constructor for class org.omnifaces.component.input.ViewParam
 
ViewParamValidationFailed - Class in org.omnifaces.taghandler
<o:viewParamValidationFailed> allows the developer to handle a view parameter validation failure with either a redirect or an HTTP error status, optionally with respectively a flash message or HTTP error message.
ViewParamValidationFailed(TagConfig) - Constructor for class org.omnifaces.taghandler.ViewParamValidationFailed
The tag constructor.
ViewScopeContext - Class in org.omnifaces.cdi.viewscope
Provide a context for the ViewScoped annotation wherein beans are managed by ViewScopeManager.
ViewScopeContext(BeanManager, Bean<ViewScopeManager>) - Constructor for class org.omnifaces.cdi.viewscope.ViewScopeContext
Construct a new view scope context.
ViewScoped - Annotation Type in org.omnifaces.cdi
The CDI view scope annotation, with more optimal handling of bean destroy as compared to standard JSF one.
ViewScopeEventListener - Class in org.omnifaces.application
Listener for JSF view scope destroy events so that view scope manager can be notified.
ViewScopeEventListener() - Constructor for class org.omnifaces.application.ViewScopeEventListener
 
ViewScopeExtension - Class in org.omnifaces.cdi.viewscope
Register the CDI view scope context.
ViewScopeExtension() - Constructor for class org.omnifaces.cdi.viewscope.ViewScopeExtension
 
ViewScopeManager - Class in org.omnifaces.cdi.viewscope
Manage the view scoped beans by listening on view scope and session scope creation and destroy.
ViewScopeManager() - Constructor for class org.omnifaces.cdi.viewscope.ViewScopeManager
 
visitTree(VisitContext, VisitCallback) - Method in class org.omnifaces.component.tree.Tree
Set the root node as current node and delegate the call to Tree.visitTreeNode(VisitContext, VisitCallback).
visitTree(VisitContext, VisitCallback) - Method in class org.omnifaces.component.tree.TreeInsertChildren
Delegate visiting of the tree node to Tree.visitTreeNode(VisitContext, VisitCallback).
visitTree(VisitContext, VisitCallback) - Method in class org.omnifaces.component.tree.TreeNodeItem
Loop over children of the current model node, set the child as the current model node and continue visiting this component according to the given visit context and callback.
visitTreeNode(VisitContext, VisitCallback) - Method in class org.omnifaces.component.tree.Tree
If the current model node isn't a leaf (i.e.
A B C D E F G H I J K L M N O P Q R S T U V W X Y 
Skip navigation links

Copyright © 2012–2015 OmniFaces. All rights reserved.