public enum ImageCollectionProcessorMode extends Enum<ImageCollectionProcessorMode> implements CmdLineOptionsProvider
Modifier and Type | Method and Description |
---|---|
Object |
getOptions() |
abstract <T extends Image<?,T>> |
processor() |
static ImageCollectionProcessorMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageCollectionProcessorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageCollectionProcessorMode DIR
public static final ImageCollectionProcessorMode SF
public static ImageCollectionProcessorMode[] values()
for (ImageCollectionProcessorMode c : ImageCollectionProcessorMode.values()) System.out.println(c);
public static ImageCollectionProcessorMode 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 abstract <T extends Image<?,T>> ImageCollectionProcessor<T> processor()
public Object getOptions()
getOptions
in interface CmdLineOptionsProvider