public enum Frequency extends Enum<Frequency>
| Modifier and Type | Method and Description |
|---|---|
byte |
code() |
String |
string() |
static Frequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Frequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Frequency DEFAULT
public static final Frequency SINGLE
public static final Frequency MULTIPLE
public static Frequency[] values()
for (Frequency c : Frequency.values()) System.out.println(c);
public static Frequency 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 byte code()
public String string()
Copyright © 2023 The Apache Software Foundation. All rights reserved.