public final class Notations extends Object
Notations.Phrase interface convert between various
notations.| Modifier and Type | Class and Description |
|---|---|
static interface |
Notations.Phrase
Representation of the result of notation parsing.
|
| Modifier and Type | Method and Description |
|---|---|
static Notations.Phrase |
fromCamelCase(String s)
Parses a camel-case string: Each upper-case letter indicates the beginning of a new word.
|
static Notations.Phrase |
fromHyphenated(String s)
Double hyphens enclose the word
"". |
static Notations.Phrase |
fromUnderscored(String s)
Double underscores enclose the word
"". |
public static Notations.Phrase fromCamelCase(String s)
public static Notations.Phrase fromHyphenated(String s)
"".
A leading hyphen maps the leading word "".
A trailing hyphen maps the trailing word "".public static Notations.Phrase fromUnderscored(String s)
"".
A leading underscore maps the leading word "".
A trailing underscore maps the trailing word "".Copyright © 2018 Arno Unkrig. All rights reserved.