Package picasso.parser.tokens.functions
Class ImageWrapToken
- java.lang.Object
-
- picasso.parser.tokens.Token
-
- picasso.parser.tokens.functions.FunctionToken
-
- picasso.parser.tokens.functions.ImageWrapToken
-
public class ImageWrapToken extends FunctionToken
-
-
Constructor Summary
Constructors Constructor Description ImageWrapToken()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isConstant()
Returns true if this token represents a constant, false otherwiseboolean
isFunction()
Returns true if this token represents a function, false otherwise-
Methods inherited from class picasso.parser.tokens.functions.FunctionToken
equals
-
-
-
-
Method Detail
-
isConstant
public boolean isConstant()
Description copied from class:Token
Returns true if this token represents a constant, false otherwise- Overrides:
isConstant
in classFunctionToken
- Returns:
- true iff this Token represents a constant
- See Also:
Token.isConstant()
-
isFunction
public boolean isFunction()
Description copied from class:Token
Returns true if this token represents a function, false otherwise- Overrides:
isFunction
in classFunctionToken
- Returns:
- true iff this Token represents a function
- See Also:
Token.isFunction()
-
-