public enum ExtremaType extends Enum<ExtremaType>
| Enum Constant and Description | 
|---|
MAXIMA
The type for maxima 
 | 
MINIMA
The type for minima 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ExtremaType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ExtremaType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ExtremaType MINIMA
public static final ExtremaType MAXIMA
public static ExtremaType[] values()
for (ExtremaType c : ExtremaType.values()) System.out.println(c);
public static 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 © 2014–2023 INRA-IJPB Modeling and Digital Imaging lab. All rights reserved.