Groovy Documentation

org.codehaus.groovy.grails.validation
[Java] Class NotEqualConstraint

java.lang.Object
  org.codehaus.groovy.grails.validation.AbstractConstraint
      org.codehaus.groovy.grails.validation.NotEqualConstraint

public class NotEqualConstraint
extends AbstractConstraint

Validates not equal to something.


Field Summary
 
Fields inherited from class AbstractConstraint
classShortName, constraintOwningClass, constraintParameter, constraintPropertyName, messageSource
 
Method Summary
java.lang.String getName()

java.lang.Object getNotEqualTo()

@return Returns the notEqualTo.

protected void processValidate(java.lang.Object target, java.lang.Object propertyValue, org.springframework.validation.Errors errors)

void setParameter(java.lang.Object constraintParameter)

boolean supports(java.lang.Class type)

 
Methods inherited from class AbstractConstraint
checkState, getDefaultMessage, getParameter, getPropertyName, isValid, processValidate, rejectValue, rejectValue, rejectValue, rejectValue, rejectValue, rejectValueWithDefaultMessage, setMessageSource, setOwningClass, setParameter, setPropertyName, skipBlankValues, skipNullValues, toString, validate
 
Methods inherited from class java.lang.Object
java.lang.Object#wait(), java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Method Detail

getName

public java.lang.String getName()


getNotEqualTo

public java.lang.Object getNotEqualTo()
Returns:
Returns the notEqualTo.


processValidate

protected void processValidate(Object target, Object propertyValue, Errors errors) {
protected void processValidate(java.lang.Object target, java.lang.Object propertyValue, org.springframework.validation.Errors errors)


setParameter

@Override
public void setParameter(java.lang.Object constraintParameter)


supports

@SuppressWarnings("rawtypes")
public boolean supports(java.lang.Class type)


 

Groovy Documentation