Class FieldInvariants
java.lang.Object
org.checkerframework.framework.util.FieldInvariants
Represents field invariants, which the user states by writing 
@FieldInvariant. Think of
 this as a set of (field name, qualifier) pairs.
 If a FieldInvariants object is malformed (inconsistent number of fields and qualifiers), BaseTypeVisitor will issue an error.
- 
Constructor Summary
ConstructorsConstructorDescriptionFieldInvariants(@Nullable FieldInvariants other, List<String> fields, List<AnnotationMirror> qualifiers, AnnotatedTypeFactory factory) Creates a new object with all the invariants inother, plus those specified byfieldsandqualifiers.FieldInvariants(List<String> fields, List<AnnotationMirror> qualifiers, AnnotatedTypeFactory factory) Creates a new FieldInvariants object. - 
Method Summary
Modifier and TypeMethodDescriptionThe simple names of the fields that have a qualifier.getQualifiersFor(CharSequence field) Returns a list of qualifiers forfield.isStrongerThan(FieldInvariants superInvar) Returns null if this is stronger than the given FieldInvariants, otherwise returns the error message.booleanReturns true if there is a qualifier for each field infields. 
- 
Constructor Details
- 
FieldInvariants
public FieldInvariants(List<String> fields, List<AnnotationMirror> qualifiers, AnnotatedTypeFactory factory) Creates a new FieldInvariants object. The result is well-formed if the length of qualifiers is either 1 or equal to length offields.- Parameters:
 fields- list of fieldsqualifiers- list of qualifiers, or a single qualifier that applies to all fieldsfactory- the type factory
 - 
FieldInvariants
public FieldInvariants(@Nullable FieldInvariants other, List<String> fields, List<AnnotationMirror> qualifiers, AnnotatedTypeFactory factory) Creates a new object with all the invariants inother, plus those specified byfieldsandqualifiers. The result is well-formed if the length of qualifiers is either 1 or equal to length offields.- Parameters:
 other- other invariant object, may be nullfields- list of fieldsqualifiers- list of qualifiersfactory- the type factory
 
 - 
 - 
Method Details
- 
getFields
The simple names of the fields that have a qualifier. May contain duplicates. - 
getQualifiersFor
Returns a list of qualifiers forfield. Iffieldhas no qualifiers, returns an empty list.- Parameters:
 field- simple field name- Returns:
 - a list of qualifiers for 
field, possibly empty 
 - 
isWellFormed
public boolean isWellFormed()Returns true if there is a qualifier for each field infields.- Returns:
 - true if there is a qualifier for each field in 
fields 
 - 
isStrongerThan
Returns null if this is stronger than the given FieldInvariants, otherwise returns the error message. This is stronger if each of its qualifiers is a subtype of (or equal to) the respective qualfier in the given FieldInvariants.- Parameters:
 superInvar- the value to check for being a weaker invariant- Returns:
 - null if this is stronger, otherwise returns an error message
 
 
 -