public class ValueCheckerUtils extends Object
Constructor and Description |
---|
ValueCheckerUtils() |
Modifier and Type | Method and Description |
---|---|
static Class<?> |
getArrayClassObject(TypeMirror componentType) |
static Class<?> |
getClassFromType(TypeMirror type) |
static String |
getExactStringValue(Tree tree,
ValueAnnotatedTypeFactory factory)
Either returns the exact string value of the given tree according to the Constant Value
Checker, or null if the exact value is not known.
|
static Long |
getExactValue(Element element,
ValueAnnotatedTypeFactory factory)
Returns the exact value of an annotated element according to the Constant Value Checker, or
null if the exact value is not known.
|
static Long |
getExactValue(Tree tree,
ValueAnnotatedTypeFactory factory)
Either returns the exact value of the given tree according to the Constant Value Checker, or
null if the exact value is not known.
|
static List<Integer> |
getLengthsForStringValues(List<String> values)
Gets a list of lengths for a list of string values.
|
static Long |
getMaxValue(Tree tree,
ValueAnnotatedTypeFactory factory)
Finds the maximum value in a Value Checker type.
|
static int |
getMinLen(Tree tree,
ValueAnnotatedTypeFactory valueAnnotatedTypeFactory)
Queries the Value Checker to determine if there is a known minimum length for the array
represented by
tree . |
static Integer |
getMinLenFromTree(Tree tree,
ValueAnnotatedTypeFactory valueATF)
Looks up the minlen of a member select tree.
|
static Long |
getMinValue(Tree tree,
ValueAnnotatedTypeFactory factory)
Finds the minimum value in a Value Checker type.
|
static Range |
getPossibleValues(AnnotatedTypeMirror valueType,
ValueAnnotatedTypeFactory valueAnnotatedTypeFactory)
Returns a range representing the possible integral values represented by the passed
AnnotatedTypeMirror . |
static Range |
getRangeFromValues(List<? extends Number> values)
Get the minimum and maximum of a list and return a range bounded by them.
|
static List<String> |
getValueOfAnnotationWithStringArgument(AnnotationMirror anno)
Gets the value field of an annotation with a list of strings in its value field.
|
static List<?> |
getValuesCastedToType(AnnotationMirror anno,
TypeMirror castTo)
Get a list of values of annotation, and then cast them to a given type.
|
static <T> List<T> |
getValuesFromRange(Range range,
Class<T> expectedType)
Get all possible values from the given type and cast them into a boxed primitive type.
|
static <T extends Comparable<T>> |
removeDuplicates(List<T> values) |
public static Class<?> getClassFromType(TypeMirror type)
public static Class<?> getArrayClassObject(TypeMirror componentType)
public static List<?> getValuesCastedToType(AnnotationMirror anno, TypeMirror castTo)
anno
- the annotation that contains valuescastTo
- the type that is casted topublic static Range getRangeFromValues(List<? extends Number> values)
public static <T> List<T> getValuesFromRange(Range range, Class<T> expectedType)
expectedType
must be a boxed type, not a primitive type, because primitive types
cannot be stored in a list.
range
- the given rangeexpectedType
- the expected typepublic static <T extends Comparable<T>> List<T> removeDuplicates(List<T> values)
public static List<Integer> getLengthsForStringValues(List<String> values)
values
- list of string valuesvalues
public static List<String> getValueOfAnnotationWithStringArgument(AnnotationMirror anno)
For the Index Checker, this will get a list of array names from an Upper Bound or SameLen annotation. making this safe to call on any Upper Bound or SameLen annotation.
public static Range getPossibleValues(AnnotatedTypeMirror valueType, ValueAnnotatedTypeFactory valueAnnotatedTypeFactory)
AnnotatedTypeMirror
. If the passed AnnotatedTypeMirror
does not contain an IntRange
annotation or an IntVal
annotation, returns null.public static Long getExactValue(Tree tree, ValueAnnotatedTypeFactory factory)
public static Long getExactValue(Element element, ValueAnnotatedTypeFactory factory)
element
- the element to get the exact value fromfactory
- ValueAnnotatedTypeFactory used for annotation accessingpublic static String getExactStringValue(Tree tree, ValueAnnotatedTypeFactory factory)
public static Long getMinValue(Tree tree, ValueAnnotatedTypeFactory factory)
public static Long getMaxValue(Tree tree, ValueAnnotatedTypeFactory factory)
public static Integer getMinLenFromTree(Tree tree, ValueAnnotatedTypeFactory valueATF)
public static int getMinLen(Tree tree, ValueAnnotatedTypeFactory valueAnnotatedTypeFactory)
tree
. If not, returns 0.