public enum BufferType extends Enum<BufferType>
IConstraint.getBufferType()
Enum Constant and Description |
---|
EXACTLY
A buffer type that requires a buffer of an exact value (e.g.
|
LESS_OR_EXACTLY
A buffer type that requires a buffer of less than or exactly a value
(e.g.
|
LESS_THAN
A buffer type that requires a buffer of less than a value (e.g.
|
MORE_OR_EXACTLY
A buffer type that requires a buffer of more than or exactly a value
(e.g.
|
MORE_THAN
A buffer type that requires a buffer of more than a given value (e.g.
|
Modifier and Type | Method and Description |
---|---|
static BufferType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BufferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BufferType EXACTLY
public static final BufferType MORE_THAN
public static final BufferType MORE_OR_EXACTLY
public static final BufferType LESS_THAN
public static final BufferType LESS_OR_EXACTLY
public static BufferType[] values()
for (BufferType c : BufferType.values()) System.out.println(c);
public static BufferType 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.