public static enum AbstractBinopExpr.BinopExprEnum extends Enum<AbstractBinopExpr.BinopExprEnum>
| Enum Constant and Description |
|---|
ABASTRACT_INT_LONG_BINOP_EXPR |
ABSTRACT_FLOAT_BINOP_EXPR |
| Modifier and Type | Method and Description |
|---|---|
static AbstractBinopExpr.BinopExprEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractBinopExpr.BinopExprEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractBinopExpr.BinopExprEnum ABASTRACT_INT_LONG_BINOP_EXPR
public static final AbstractBinopExpr.BinopExprEnum ABSTRACT_FLOAT_BINOP_EXPR
public static AbstractBinopExpr.BinopExprEnum[] values()
for (AbstractBinopExpr.BinopExprEnum c : AbstractBinopExpr.BinopExprEnum.values()) System.out.println(c);
public static AbstractBinopExpr.BinopExprEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024 Soot OSS. All rights reserved.