public enum BoundaryType extends Enum<BoundaryType>
Enum Constant and Description |
---|
CLOSED |
OPEN |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
BoundaryType |
and(BoundaryType that) |
BoundaryType |
minus(BoundaryType that) |
BoundaryType |
negate() |
static BoundaryType |
of(Predicate<?> predicate) |
BoundaryType |
or(BoundaryType that) |
static BoundaryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
BoundaryType |
xor(BoundaryType that) |
public static final BoundaryType CLOSED
public static final BoundaryType OPEN
public static final BoundaryType UNSPECIFIED
public static BoundaryType[] values()
for (BoundaryType c : BoundaryType.values()) System.out.println(c);
public static BoundaryType 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 BoundaryType and(BoundaryType that)
public BoundaryType or(BoundaryType that)
public BoundaryType negate()
public BoundaryType minus(BoundaryType that)
public BoundaryType xor(BoundaryType that)
public static BoundaryType of(Predicate<?> predicate)
Copyright © 2015–2022 ImgLib2. All rights reserved.