public enum BoundType extends Enum<BoundType>
Enum Constant and Description |
---|
EXCLUSIVE
The bound is exclusive.
|
INCLUSIVE
The bound is inclusive.
|
NONE
There is no bound.
|
Modifier and Type | Method and Description |
---|---|
Boolean |
isInclusive()
|
static BoundType |
of(boolean inclusive)
|
static BoundType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundType INCLUSIVE
public static final BoundType EXCLUSIVE
public static final BoundType NONE
public static BoundType[] values()
for (BoundType c : BoundType.values()) System.out.println(c);
public static BoundType 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 static BoundType of(boolean inclusive)
Copyright © 2022. All rights reserved.