Uses of Class
com.strobel.decompiler.languages.java.ast.UnaryOperatorType
-
Packages that use UnaryOperatorType Package Description com.strobel.decompiler.languages.java.ast -
-
Uses of UnaryOperatorType in com.strobel.decompiler.languages.java.ast
Fields in com.strobel.decompiler.languages.java.ast declared as UnaryOperatorType Modifier and Type Field Description private UnaryOperatorType
UnaryOperatorExpression. _operator
Methods in com.strobel.decompiler.languages.java.ast that return UnaryOperatorType Modifier and Type Method Description UnaryOperatorType
UnaryOperatorExpression. getOperator()
static UnaryOperatorType
UnaryOperatorType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UnaryOperatorType[]
UnaryOperatorType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.strobel.decompiler.languages.java.ast with parameters of type UnaryOperatorType Modifier and Type Method Description (package private) static java.lang.Object
JavaResolver.UnaryOperations. doUnary(UnaryOperatorType operator, java.lang.Object operand)
static TokenRole
UnaryOperatorExpression. getOperatorRole(UnaryOperatorType operator)
void
UnaryOperatorExpression. setOperator(UnaryOperatorType operator)
Constructors in com.strobel.decompiler.languages.java.ast with parameters of type UnaryOperatorType Constructor Description UnaryOperatorExpression(UnaryOperatorType operator, Expression expression)
-