Class Operators
- java.lang.Object
-
- org.spongepowered.api.command.parameter.managed.operator.Operators
-
public final class Operators extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static DefaultedRegistryReference<Operator.Simple>
ADDITION
Represents the addition operation, +=static DefaultedRegistryReference<Operator>
ASSIGN
Represents the assignment operation, =static DefaultedRegistryReference<Operator.Simple>
DIVISION
Represents the division operation, /=static DefaultedRegistryReference<Operator.Simple>
MAX
Represents the max operation, >static DefaultedRegistryReference<Operator.Simple>
MIN
Represents the min operation, <static DefaultedRegistryReference<Operator.Simple>
MODULUS
Represents the modulus operation, %=static DefaultedRegistryReference<Operator.Simple>
MULTIPLICATION
Represents the multiplication operation, *=static DefaultedRegistryReference<Operator.Simple>
SUBTRACTION
Represents the subtraction operation, -=static DefaultedRegistryReference<Operator>
SWAP
Represents the swap operation, ><
-
-
-
Field Detail
-
ADDITION
public static final DefaultedRegistryReference<Operator.Simple> ADDITION
Represents the addition operation, +=
-
ASSIGN
public static final DefaultedRegistryReference<Operator> ASSIGN
Represents the assignment operation, =
-
DIVISION
public static final DefaultedRegistryReference<Operator.Simple> DIVISION
Represents the division operation, /=
-
MAX
public static final DefaultedRegistryReference<Operator.Simple> MAX
Represents the max operation, >
-
MIN
public static final DefaultedRegistryReference<Operator.Simple> MIN
Represents the min operation, <
-
MODULUS
public static final DefaultedRegistryReference<Operator.Simple> MODULUS
Represents the modulus operation, %=
-
MULTIPLICATION
public static final DefaultedRegistryReference<Operator.Simple> MULTIPLICATION
Represents the multiplication operation, *=
-
SUBTRACTION
public static final DefaultedRegistryReference<Operator.Simple> SUBTRACTION
Represents the subtraction operation, -=
-
SWAP
public static final DefaultedRegistryReference<Operator> SWAP
Represents the swap operation, ><
-
-