public static interface Parser.Config
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Parser.Config.Builder |
| Modifier and Type | Field and Description |
|---|---|
static Tag |
BIG_DECIMAL_TAG
Floating point literals which are marked by a trailing M are
initially parsed as
BigDecimal. |
static Tag |
BIG_INTEGER_TAG
Integer literals marked by a trailing N, and those which lie outside
the range of a
java.lang.Long are initially parsed as
BigInteger. A user wishing to customize the representation of
big integers may install a TagHandler for this Tag, which will be
called with the parsed BigInteger. |
static Tag |
DOUBLE_TAG
Floating point literals not marked by a trailing M are initially
parsed as
Double. |
static Tag |
EDN_INSTANT |
static Tag |
EDN_UUID |
static Tag |
LONG_TAG
Integer literals not marked by a trailing N which lie inside the
range of a
java.lang.Long are initially parsed as
Long. |
| Modifier and Type | Method and Description |
|---|---|
CollectionBuilder.Factory |
getListFactory() |
CollectionBuilder.Factory |
getMapFactory() |
CollectionBuilder.Factory |
getSetFactory() |
TagHandler |
getTagHandler(Tag tag) |
CollectionBuilder.Factory |
getVectorFactory() |
static final Tag EDN_UUID
static final Tag EDN_INSTANT
static final Tag BIG_DECIMAL_TAG
BigDecimal. A user wishing to customize
the representation used for big decimals may install a TagHandler for
this Tag, which will be called with the parsed BigDecimal.static final Tag DOUBLE_TAG
Double. A user wishing to customize the
representation used for doubles may install a TagHandler for this
Tag, which will be called with the parsed Double.static final Tag BIG_INTEGER_TAG
java.lang.Long are initially parsed as
BigInteger. A user wishing to customize the representation of
big integers may install a TagHandler for this Tag, which will be
called with the parsed BigInteger.static final Tag LONG_TAG
java.lang.Long are initially parsed as
Long. A user wishing to customize the representation of big
integers may install a TagHandler for this Tag, which will be called
with the parsed BigInteger.CollectionBuilder.Factory getListFactory()
CollectionBuilder.Factory getVectorFactory()
CollectionBuilder.Factory getSetFactory()
CollectionBuilder.Factory getMapFactory()
TagHandler getTagHandler(Tag tag)
Copyright © 2012. All Rights Reserved.