public static enum HalfBinaryExpr.Operator extends Enum<HalfBinaryExpr.Operator> implements com.github.javaparser.printer.Printable
Enum Constant and Description |
---|
EQUALS |
GREATER |
GREATER_EQUALS |
LESS |
LESS_EQUALS |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
String |
asString() |
static HalfBinaryExpr.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HalfBinaryExpr.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HalfBinaryExpr.Operator EQUALS
public static final HalfBinaryExpr.Operator NOT_EQUALS
public static final HalfBinaryExpr.Operator LESS
public static final HalfBinaryExpr.Operator GREATER
public static final HalfBinaryExpr.Operator LESS_EQUALS
public static final HalfBinaryExpr.Operator GREATER_EQUALS
public static HalfBinaryExpr.Operator[] values()
for (HalfBinaryExpr.Operator c : HalfBinaryExpr.Operator.values()) System.out.println(c);
public static HalfBinaryExpr.Operator 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 nullpublic String asString()
asString
in interface com.github.javaparser.printer.Printable
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.