public static enum WindowOptions.WINID extends java.lang.Enum<WindowOptions.WINID> implements CASActionOptions.EnumValue
Enum Constant and Description |
---|
BARTLETT |
BARTLETT_HANN |
BLACKMAN |
BLACKMAN_HARRIS |
BOHMAN |
CHEBYSHEV |
FLAT_TOP |
GAUSSIAN |
HAMMING |
HANNING |
INVALID |
KAISER |
PARZEN |
RECTANGULAR |
TAYLOR |
TUKEY |
Modifier and Type | Method and Description |
---|---|
static WindowOptions.WINID |
getByValue(java.lang.String value) |
java.lang.String |
getValue() |
static WindowOptions.WINID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowOptions.WINID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowOptions.WINID BARTLETT
public static final WindowOptions.WINID BARTLETT_HANN
public static final WindowOptions.WINID BLACKMAN
public static final WindowOptions.WINID BLACKMAN_HARRIS
public static final WindowOptions.WINID BOHMAN
public static final WindowOptions.WINID CHEBYSHEV
public static final WindowOptions.WINID FLAT_TOP
public static final WindowOptions.WINID GAUSSIAN
public static final WindowOptions.WINID HAMMING
public static final WindowOptions.WINID HANNING
public static final WindowOptions.WINID INVALID
public static final WindowOptions.WINID KAISER
public static final WindowOptions.WINID PARZEN
public static final WindowOptions.WINID RECTANGULAR
public static final WindowOptions.WINID TAYLOR
public static final WindowOptions.WINID TUKEY
public static WindowOptions.WINID[] values()
for (WindowOptions.WINID c : WindowOptions.WINID.values()) System.out.println(c);
public static WindowOptions.WINID valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()
getValue
in interface CASActionOptions.EnumValue
public static WindowOptions.WINID getByValue(java.lang.String value)