Uses of Class
squidpony.StringConvert
Package | Description |
---|---|
squidpony |
Utilities that don't fit elsewhere in SquidLib; mostly text manipulation, compression, and helper code.
|
-
Uses of StringConvert in squidpony
Fields in squidpony with type parameters of type StringConvert Modifier and Type Field Description static K2<StringConvert,CharSequence[]>
StringConvert. registry
Methods in squidpony that return StringConvert Modifier and Type Method Description static <K> StringConvert<Arrangement<K>>
Converters. convertArrangement(CharSequence type)
static <K> StringConvert<Arrangement<K>>
Converters. convertArrangement(Class<K> type)
static <K> StringConvert<Arrangement<K>>
Converters. convertArrangement(StringConvert<K> convert)
static <K> StringConvert<ArrayList<K>>
Converters. convertArrayList(CharSequence type)
static <K> StringConvert<ArrayList<K>>
Converters. convertArrayList(Class<K> type)
static <K> StringConvert<ArrayList<K>>
Converters. convertArrayList(StringConvert<K> convert)
static <K, V> StringConvert<HashMap<K,V>>
Converters. convertHashMap(CharSequence typeK, CharSequence typeV)
static <K, V> StringConvert<HashMap<K,V>>
Converters. convertHashMap(Class<K> typeK, Class<V> typeV)
static <K, V> StringConvert<HashMap<K,V>>
Converters. convertHashMap(StringConvert<K> convertK, StringConvert<V> convertV)
static <K> StringConvert<HashSet<K>>
Converters. convertHashSet(CharSequence type)
static <K> StringConvert<HashSet<K>>
Converters. convertHashSet(Class<K> type)
static <K> StringConvert<HashSet<K>>
Converters. convertHashSet(StringConvert<K> convert)
static <K> StringConvert<List<K>>
Converters. convertList(CharSequence type)
static <K> StringConvert<List<K>>
Converters. convertList(Class<K> type)
static <K> StringConvert<List<K>>
Converters. convertList(StringConvert<K> convert)
static <K, V> StringConvert<OrderedMap<K,V>>
Converters. convertOrderedMap(CharSequence typeK, CharSequence typeV)
static <K, V> StringConvert<OrderedMap<K,V>>
Converters. convertOrderedMap(Class<K> typeK, Class<V> typeV)
static <K, V> StringConvert<OrderedMap<K,V>>
Converters. convertOrderedMap(StringConvert<K> convertK, StringConvert<V> convertV)
static <K> StringConvert<OrderedSet<K>>
Converters. convertOrderedSet(CharSequence type)
static <K> StringConvert<OrderedSet<K>>
Converters. convertOrderedSet(Class<K> type)
static <K> StringConvert<OrderedSet<K>>
Converters. convertOrderedSet(StringConvert<K> convert)
static <K, V> StringConvert<UnorderedMap<K,V>>
Converters. convertUnorderedMap(CharSequence typeK, CharSequence typeV)
static <K, V> StringConvert<UnorderedMap<K,V>>
Converters. convertUnorderedMap(Class<K> typeK, Class<V> typeV)
static <K, V> StringConvert<UnorderedMap<K,V>>
Converters. convertUnorderedMap(StringConvert<K> convertK, StringConvert<V> convertV)
static <K> StringConvert<UnorderedSet<K>>
Converters. convertUnorderedSet(CharSequence type)
static <K> StringConvert<UnorderedSet<K>>
Converters. convertUnorderedSet(Class<K> type)
static <K> StringConvert<UnorderedSet<K>>
Converters. convertUnorderedSet(StringConvert<K> convert)
static StringConvert<?>
StringConvert. get(CharSequence name)
Gets the registered StringConvert for the given type name, if there is one, or returns null otherwise.static StringConvert<?>
StringConvert. lookup(CharSequence... types)
Looks up the StringConvert for a given vararg of Class instances (if an array of Classes is used other than a vararg, it must not be altered in the future, nor reused in a way that modifies its elements).Methods in squidpony with parameters of type StringConvert Modifier and Type Method Description static <K> StringConvert<Arrangement<K>>
Converters. convertArrangement(StringConvert<K> convert)
static <K> StringConvert<ArrayList<K>>
Converters. convertArrayList(StringConvert<K> convert)
static <K, V> StringConvert<HashMap<K,V>>
Converters. convertHashMap(StringConvert<K> convertK, StringConvert<V> convertV)
static <K> StringConvert<HashSet<K>>
Converters. convertHashSet(StringConvert<K> convert)
static <K> StringConvert<List<K>>
Converters. convertList(StringConvert<K> convert)
static <K, V> StringConvert<OrderedMap<K,V>>
Converters. convertOrderedMap(StringConvert<K> convertK, StringConvert<V> convertV)
static <K> StringConvert<OrderedSet<K>>
Converters. convertOrderedSet(StringConvert<K> convert)
static <K, V> StringConvert<UnorderedMap<K,V>>
Converters. convertUnorderedMap(StringConvert<K> convertK, StringConvert<V> convertV)
static <K> StringConvert<UnorderedSet<K>>
Converters. convertUnorderedSet(StringConvert<K> convert)