Uses of Class
org.checkerframework.framework.qual.LiteralKind
-
Packages that use LiteralKind Package Description org.checkerframework.framework.qual Contains the basic annotations to be used by all type systems and meta-annotations to qualify annotations (qualifiers). -
-
Uses of LiteralKind in org.checkerframework.framework.qual
Methods in org.checkerframework.framework.qual that return LiteralKind Modifier and Type Method Description LiteralKind[]
value()
The kinds of literals whose types have this qualifier.static LiteralKind
LiteralKind. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LiteralKind[]
LiteralKind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.checkerframework.framework.qual that return types with arguments of type LiteralKind Modifier and Type Method Description static java.util.List<LiteralKind>
LiteralKind. allLiteralKinds()
Returns all LiteralKinds except for ALL and PRIMITIVE (which are shorthands for groups of other LiteralKinds).static java.util.List<LiteralKind>
LiteralKind. primitiveLiteralKinds()
Returns the primitiveLiteralKind
s: INT, LONG, FLOAT, DOUBLE, BOOLEAN, CHAR.
-