@GeneratedType(value="net.datenwerke.dtoservices.dtogenerator.DtoAnnotationProcessor") public enum BinaryOperatorDto extends java.lang.Enum<BinaryOperatorDto>
Enum Constant and Description |
---|
EQUALS |
GREATER |
GREATER_OR_EQUALS |
LESS |
LESS_OR_EQUALS |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static BinaryOperatorDto |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BinaryOperatorDto[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryOperatorDto LESS
public static final BinaryOperatorDto LESS_OR_EQUALS
public static final BinaryOperatorDto EQUALS
public static final BinaryOperatorDto NOT_EQUALS
public static final BinaryOperatorDto GREATER
public static final BinaryOperatorDto GREATER_OR_EQUALS
public static BinaryOperatorDto[] values()
for (BinaryOperatorDto c : BinaryOperatorDto.values()) System.out.println(c);
public static BinaryOperatorDto valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null