public abstract class AlphaLiteralUtils extends Object
| Constructor and Description |
|---|
AlphaLiteralUtils() |
| Modifier and Type | Method and Description |
|---|---|
static String |
toAscii(int number)
Returns an alphanumeric literal representation of the given number using ASCII-7 upper case characters.
|
static String |
toAsciiLC(int number)
Returns an alphanumeric literal representation of the given number using ASCII-7 lower case characters.
|
static String |
toCircledLatinCapital(int number)
Returns an alphanumeric literal representation of the given number using UTF Circled Latin Capital (upper case) characters.
|
static String |
toCircledLatinSmall(int number)
Returns an alphanumeric literal representation of the given number using UTF Circled Latin Small (lower case) characters.
|
static String |
toFullwidthLatinCapital(int number)
Returns an alphanumeric literal representation of the given number using UTF Fullwidth Latin Capital Letter (upper case) characters.
|
static String |
toFullwidthLatinSmall(int number)
Returns an alphanumeric literal representation of the given number using UTF Fullwidth Latin Small Letter (lower case) characters.
|
static String |
toParenthesizedLatinSmallLetter(int number)
Returns an alphanumeric literal representation of the given number using UTF Parenthesized Latin Small Letter (lower case) characters.
|
public static final String toAscii(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)public static final String toAsciiLC(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)public static final String toCircledLatinCapital(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)public static final String toCircledLatinSmall(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)public static final String toParenthesizedLatinSmallLetter(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)public static final String toFullwidthLatinCapital(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)public static final String toFullwidthLatinSmall(int number)
number - to convertNotImplementedException - if the number is out of bounds (currently smaller than 1 and larger than 26)Copyright © 2015–2016. All rights reserved.