Class TokenUtil
java.lang.Object
com.puppycrawl.tools.checkstyle.utils.TokenUtil
Contains utility methods for tokens.
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanareOnSameLine(DetailAST ast1, DetailAST ast2) Determines if two ASTs are on the same line.findFirstTokenByPredicate(DetailAST root, Predicate<DetailAST> predicate) static voidforEachChild(DetailAST root, int type, Consumer<DetailAST> action) Performs an action for each child ofDetailASTroot node which matches the given token type.static int[]Get all token IDs that are available in TokenTypes.static intgetIntFromField(Field field, Object object) Gets the value of a static or instance field of type int or of another primitive type convertible to type int via a widening conversion.static StringgetShortDescription(String name) Returns the short description of a token for a given name.static intgetTokenId(String name) Returns the ID of a token for a given name.static StringgetTokenName(int id) Returns the name of a token for a given ID.static intGet total number of TokenTypes.static booleanisCommentType(int type) Is argument comment-related type (SINGLE_LINE_COMMENT, BLOCK_COMMENT_BEGIN, BLOCK_COMMENT_END, COMMENT_CONTENT).static booleanisCommentType(String type) Is argument comment-related type name (SINGLE_LINE_COMMENT, BLOCK_COMMENT_BEGIN, BLOCK_COMMENT_END, COMMENT_CONTENT).static booleanisOfType(int type, int... types) Determines if the token type belongs to the given types.static booleanDetermines if the AST belongs to the given types.static booleanisTypeDeclaration(int type) Is type declaration token type (CLASS_DEF, INTERFACE_DEF, ANNOTATION_DEF, ENUM_DEF, RECORD_DEF).Creates a map of 'field name' to 'field value' from allpublicintfields of a class.static String[]Creates an array of map keys for quick value-to-name lookup for the map.
-
Method Details
-
getIntFromField
Gets the value of a static or instance field of type int or of another primitive type convertible to type int via a widening conversion. Does not throw any checked exceptions.- Parameters:
field- from which the int should be extractedobject- to extract the int value from- Returns:
- the value of the field converted to type int
- Throws:
IllegalStateException- if this Field object is enforcing Java language access control and the underlying field is inaccessible- See Also:
-
nameToValueMapFromPublicIntFields
Creates a map of 'field name' to 'field value' from allpublicintfields of a class.- Parameters:
cls- source class- Returns:
- unmodifiable name to value map
-
valueToNameArrayFromNameToValueMap
Creates an array of map keys for quick value-to-name lookup for the map.- Parameters:
map- source map- Returns:
- array of map keys
-
getTokenTypesTotalNumber
public static int getTokenTypesTotalNumber()Get total number of TokenTypes.- Returns:
- total number of TokenTypes.
-
getAllTokenIds
public static int[] getAllTokenIds()Get all token IDs that are available in TokenTypes.- Returns:
- array of token IDs
-
getTokenName
Returns the name of a token for a given ID.- Parameters:
id- the ID of the token name to get- Returns:
- a token name
- Throws:
IllegalArgumentException- when id is not valid
-
getTokenId
Returns the ID of a token for a given name.- Parameters:
name- the name of the token ID to get- Returns:
- a token ID
- Throws:
IllegalArgumentException- when id is null
-
getShortDescription
Returns the short description of a token for a given name.- Parameters:
name- the name of the token ID to get- Returns:
- a short description
- Throws:
IllegalArgumentException- when name is unknown
-
isCommentType
public static boolean isCommentType(int type) Is argument comment-related type (SINGLE_LINE_COMMENT, BLOCK_COMMENT_BEGIN, BLOCK_COMMENT_END, COMMENT_CONTENT).- Parameters:
type- token type.- Returns:
- true if type is comment-related type.
-
isCommentType
Is argument comment-related type name (SINGLE_LINE_COMMENT, BLOCK_COMMENT_BEGIN, BLOCK_COMMENT_END, COMMENT_CONTENT).- Parameters:
type- token type name.- Returns:
- true if type is comment-related type name.
-
findFirstTokenByPredicate
-
forEachChild
Performs an action for each child ofDetailASTroot node which matches the given token type.- Parameters:
root- root node.type- token type to match.action- action to perform on the nodes.
-
areOnSameLine
Determines if two ASTs are on the same line.- Parameters:
ast1- the first ASTast2- the second AST- Returns:
- true if they are on the same line.
-
isTypeDeclaration
public static boolean isTypeDeclaration(int type) Is type declaration token type (CLASS_DEF, INTERFACE_DEF, ANNOTATION_DEF, ENUM_DEF, RECORD_DEF).- Parameters:
type- token type.- Returns:
- true if type is type declaration token type.
-
isOfType
public static boolean isOfType(int type, int... types) Determines if the token type belongs to the given types.- Parameters:
type- the Token Type to checktypes- the acceptable types- Returns:
- true if type matches one of the given types.
-
isOfType
Determines if the AST belongs to the given types.- Parameters:
ast- the AST node to checktypes- the acceptable types- Returns:
- true if type matches one of the given types.
-