public enum FrequencyBand extends Enum<FrequencyBand>
| Enum Constant and Description | 
|---|
| ALL | 
| DCONLY | 
| NOFLEXBITS | 
| NOHIGHPASS | 
| RESERVED | 
| Modifier and Type | Field and Description | 
|---|---|
| private List<Integer> | ids | 
| private int | numberOfBands | 
| Modifier and Type | Method and Description | 
|---|---|
| static FrequencyBand | findById(int id) | 
| List<Integer> | getId() | 
| int | getNumberOfBands() | 
| static FrequencyBand | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FrequencyBand[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FrequencyBand ALL
public static final FrequencyBand NOFLEXBITS
public static final FrequencyBand NOHIGHPASS
public static final FrequencyBand DCONLY
public static final FrequencyBand RESERVED
public static FrequencyBand[] values()
for (FrequencyBand c : FrequencyBand.values()) System.out.println(c);
public static FrequencyBand 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 int getNumberOfBands()
public static FrequencyBand findById(int id)
Copyright © 2015 Open Microscopy Environment