public enum MorseAlphabets extends Enum<MorseAlphabets>
Represents set of alphabets supported for Morse code
| Enum Constant and Description |
|---|
Arabic
The Arabic code alphabet.
|
Cyrillic
The Cyrillic code alphabet.
|
Greek
The Greek Morse code alphabet.
|
Hebrew
The Hebrew code alphabet.
|
Kurdish
The Kurdish code alphabet.
|
Latin
The Latin Morse code alphabet.
|
Persian
The Persian (Farsi) code alphabet.
|
Portuguese
The Portuguese code alphabet.
|
| Modifier and Type | Method and Description |
|---|---|
static MorseAlphabets |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MorseAlphabets[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MorseAlphabets Latin
The Latin Morse code alphabet.
public static final MorseAlphabets Greek
The Greek Morse code alphabet.
public static final MorseAlphabets Cyrillic
The Cyrillic code alphabet.
public static final MorseAlphabets Hebrew
The Hebrew code alphabet.
public static final MorseAlphabets Arabic
The Arabic code alphabet.
public static final MorseAlphabets Portuguese
The Portuguese code alphabet.
public static final MorseAlphabets Kurdish
The Kurdish code alphabet.
public static final MorseAlphabets Persian
The Persian (Farsi) code alphabet.
public static MorseAlphabets[] values()
for (MorseAlphabets c : MorseAlphabets.values()) System.out.println(c);
public static MorseAlphabets 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 © 2025 Aspose. All Rights Reserved.