| spoon.reflect.code.UnaryOperatorKind
UnaryOperatorKind | public enum UnaryOperatorKind (Code) | | This enumeration defines all the kinds of unary operators.
|
Field Summary | |
Enum Constant | COMPL Binary complement. | Enum Constant | NEG Negation. | Enum Constant | NOT Logical inversion. | Enum Constant | POS Positivation. | Enum Constant | POSTDEC Decrementation post assignment. | Enum Constant | POSTINC Incrementation post assignment. | Enum Constant | PREDEC Decrementation pre assignment. | Enum Constant | PREINC Incrementation pre assignment. |
COMPL | Enum Constant COMPL(Code) | | Binary complement.
|
NEG | Enum Constant NEG(Code) | | Negation.
|
NOT | Enum Constant NOT(Code) | | Logical inversion.
|
POS | Enum Constant POS(Code) | | Positivation.
|
POSTDEC | Enum Constant POSTDEC(Code) | | Decrementation post assignment.
|
POSTINC | Enum Constant POSTINC(Code) | | Incrementation post assignment.
|
PREDEC | Enum Constant PREDEC(Code) | | Decrementation pre assignment.
|
PREINC | Enum Constant PREINC(Code) | | Incrementation pre assignment.
|
|
|