public static enum DogDetection.ExtremaType extends Enum<DogDetection.ExtremaType>
Enum Constant and Description |
---|
MAXIMA
Dark blobs on bright background.
|
MINIMA
Bright blobs on dark background.
|
Modifier and Type | Method and Description |
---|---|
static DogDetection.ExtremaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DogDetection.ExtremaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DogDetection.ExtremaType MINIMA
public static final DogDetection.ExtremaType MAXIMA
public static DogDetection.ExtremaType[] values()
for (DogDetection.ExtremaType c : DogDetection.ExtremaType.values()) System.out.println(c);
public static DogDetection.ExtremaType 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 © 2015–2022 ImgLib2. All rights reserved.