public static class CollectionConstraint.AllValuesIn extends Object implements CollectionConstraint
PropertyConstraint
, and the total number of
members must be acceptable by the given cardinality constraint.CollectionConstraint.AllValuesIn, CollectionConstraint.And, CollectionConstraint.Contains, CollectionConstraint.Or
ANY, EMPTY, NONE
Constructor and Description |
---|
CollectionConstraint.AllValuesIn(PropertyConstraint pc,
Location card)
Create an AllValuesIn based upon a PropertyConstraint and a
cardinality.
|
Modifier and Type | Method and Description |
---|---|
boolean |
accept(Object o)
accept returns true if the value fulfills the
constraint. |
boolean |
equals(Object o) |
Location |
getCardinalityConstraint()
Get the cardinality constraint used to validate the number of property
values.
|
PropertyConstraint |
getPropertyConstraint()
Get the PropertyConstraint used to validate each property value.
|
int |
hashCode() |
boolean |
subConstraintOf(CollectionConstraint cc)
subConstraintOf returns true if the constraint
is a sub-constraint. |
String |
toString() |
boolean |
validateAddValue(Collection oldcol,
Object newValue)
Return
true iff the Collection formed by adding
newValue to current would be accepted
by this constraint. |
boolean |
validateRemoveValue(Collection oldcol,
Object victim)
Return
true iff the Collection formed by removing
newValue from current would be accepted
by this constraint. |
public CollectionConstraint.AllValuesIn(PropertyConstraint pc, Location card)
pc
- the PropertyConstraint to apply to each property valuecard
- the cardinality constraint restricting the number of
valuespublic PropertyConstraint getPropertyConstraint()
public Location getCardinalityConstraint()
public boolean accept(Object o)
CollectionConstraint
accept
returns true if the value fulfills the
constraint.accept
in interface CollectionConstraint
o
- a Collection
to check.public boolean validateAddValue(Collection oldcol, Object newValue)
CollectionConstraint
true
iff the Collection formed by adding
newValue
to current
would be accepted
by this constraint.
Implementations may not assume that current
is valid.validateAddValue
in interface CollectionConstraint
oldcol
- a Collection containing the current valuesnewValue
- the new value to addpublic boolean validateRemoveValue(Collection oldcol, Object victim)
CollectionConstraint
true
iff the Collection formed by removing
newValue
from current
would be accepted
by this constraint.
Implementations may not assume that current
is valid. However, current
will already have been
checked to ensure that it contains victim
.validateRemoveValue
in interface CollectionConstraint
oldcol
- a Collection containing the current valuesvictim
- the value to removepublic boolean subConstraintOf(CollectionConstraint cc)
CollectionConstraint
subConstraintOf
returns true if the constraint
is a sub-constraint.
A pair of constraints super and sub are in a superConstraint/subConstraint relationship if every object accepted by sub is also accepted by super. To put it another way, if instanceOf was used as a set-membership indicator function over some set of objects, then the set produced by super would be a superset of that produced by sub.
It is not expected that constraints will neccesarily
maintain references to super/sub types. It will be more usual
to infer this relationship by introspecting the constraints
themselves. For example,
CollectionConstraint.ByClass
will infer
subConstraintOf by looking at the possible class of all items
matching subConstraint.
subConstraintOf
in interface CollectionConstraint
cc
- a CollectionConstraint
to check.boolean
.
Usefull when attempting to compare two constraints to see
if it is necisary to retain both. You may want to check the more
general or the more specific constraint only.Copyright © 2014 BioJava. All rights reserved.