public enum RangeBoundInclusion extends Enum<RangeBoundInclusion>
Enum Constant and Description |
---|
EXCLUDED
Exclude the bound from the matched range.
|
INCLUDED
Include the bound in the matched range.
|
Modifier and Type | Method and Description |
---|---|
static RangeBoundInclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeBoundInclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeBoundInclusion INCLUDED
public static final RangeBoundInclusion EXCLUDED
public static RangeBoundInclusion[] values()
for (RangeBoundInclusion c : RangeBoundInclusion.values()) System.out.println(c);
public static RangeBoundInclusion 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-2018 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.