public interface IMorseEncoder
Declares functionality to encode text by Morse code.
| Modifier and Type | Method and Description |
|---|---|
String |
encode(String text)
Encodes text by Morse code.
|
String |
encode(String text,
char inputSeparator)
Encodes text by Morse code.
|
String |
encode(String text,
char inputSeparator,
char outputSeparator)
Encodes text by Morse code.
|
String |
encode(String text,
MorseAlphabets alphabet)
Encodes text by Morse code.
|
String |
encode(String text,
MorseAlphabets alphabet,
char inputSeparator)
Encodes text by Morse code.
|
String |
encode(String text,
MorseAlphabets alphabet,
char inputSeparator,
char outputSeparator)
Encodes text by Morse code.
|
String encode(String text, MorseAlphabets alphabet)
Encodes text by Morse code.
text - Text to encode by Morse code.alphabet - Alphabet of Morse code.String encode(String text, MorseAlphabets alphabet, char inputSeparator)
Encodes text by Morse code.
text - Text to encode by Morse code.alphabet - Alphabet of Morse code.inputSeparator - Symbol used to separate words in input text.String encode(String text, MorseAlphabets alphabet, char inputSeparator, char outputSeparator)
Encodes text by Morse code.
text - Text to encode by Morse code.alphabet - Alphabet of Morse code.inputSeparator - Symbol used to separate words in input text.outputSeparator - Symbol used to separate words in encoded text.String encode(String text)
Encodes text by Morse code. Heuristic analysis is used to calculate the alphabet of the input text. The alphabet is selected by the first word.
text - Text to encode by Morse code.String encode(String text, char inputSeparator)
Encodes text by Morse code. Heuristic analysis is used to calculate the alphabet of the input text. The alphabet is selected by the first word.
text - Text to encode by Morse code.inputSeparator - Symbol used to separate words in input text.String encode(String text, char inputSeparator, char outputSeparator)
Encodes text by Morse code. Heuristic analysis is used to calculate the alphabet of the input text. The alphabet is selected by the first word.
text - Text to encode by Morse code.inputSeparator - Symbol used to separate words in input text.outputSeparator - Symbol used to separate words in encoded text.Copyright © 2025 Aspose. All Rights Reserved.