class Serializer extends AnyRef
Responsible for serializing scala data structure com.celadari.jsonlogicscala.tree.JsonLogicCore to json. May be extended to fit custom use cases. Providing the right configuration via com.celadari.jsonlogicscala.serialize.SerializerConf is enough to cover most cases. You may redefine methods to handle extreme uncommon cases.
- Alphabetic
- By Inheritance
- Serializer
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Serializer()(implicit conf: SerializerConf)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- implicit val conf: SerializerConf
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
getMarshaller(typeValue: TypeValue): Marshaller
Returns com.celadari.jsonlogicscala.serialize.Marshaller associated with input typeValue.
Returns com.celadari.jsonlogicscala.serialize.Marshaller associated with input typeValue. If input typeValue is com.celadari.jsonlogicscala.tree.types.SimpleTypeValue then returns mapped value by marshallers attribute. If input typeValue is com.celadari.jsonlogicscala.tree.types.OptionTypeValue, com.celadari.jsonlogicscala.tree.types.ArrayTypeValue, com.celadari.jsonlogicscala.tree.types.MapTypeValue then a new com.celadari.jsonlogicscala.serialize.Marshaller is recursively created by checking paramType of input typeValue.
- returns
Marshaller associated to typeValue.
- Attributes
- protected[this]
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
val
marshallers: Map[String, Marshaller]
Maps type_codename to com.celadari.jsonlogicscala.serialize.Marshaller.
Maps type_codename to com.celadari.jsonlogicscala.serialize.Marshaller.
- Attributes
- protected[this]
- Note
More specifically, keys should be type_codename of com.celadari.jsonlogicscala.tree.types.SimpleTypeValue as generic types (OptionTypeValue, MapTypeValue, ArrayTypeValue) are handled recursively by getMarshaller.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
serialize(jsonLogicCore: JsonLogicCore): JsValue
Returns serialized scala data structure.
Returns serialized scala data structure.
- returns
full structure with logic and data.
-
def
serializeArrayOfConditions(conditions: Array[JsonLogicCore]): (JsValue, JsObject)
Returns tuple of serialized (logic, data) of scala data structure Array\[ com.celadari.jsonlogicscala.tree.JsonLogicCore\].
Returns tuple of serialized (logic, data) of scala data structure Array\[ com.celadari.jsonlogicscala.tree.JsonLogicCore\]. Logic is returned in an array of JsValue and data by merging data JsObject of each condition.
- returns
tuple of split (logic JsValue, data JsObject) from conditions.
- Attributes
- protected[this]
-
def
serializeComposeLogic(composeLogic: ComposeLogic): (JsValue, JsObject)
Returns tuple of serialized (logic, data) of scala data structure com.celadari.jsonlogicscala.tree.ComposeLogic.
Returns tuple of serialized (logic, data) of scala data structure com.celadari.jsonlogicscala.tree.ComposeLogic. Json-logic-typed format requires logic and data to split.
- returns
(logic JsValue, data JsValue)
- Attributes
- protected[this]
-
def
serializeJsonLogicCore(jsonLogic: JsonLogicCore): (JsValue, JsValue)
Returns tuple of serialized (logic, data) of scala data structure com.celadari.jsonlogicscala.tree.JsonLogicCore.
Returns tuple of serialized (logic, data) of scala data structure com.celadari.jsonlogicscala.tree.JsonLogicCore. Json-logic-typed format requires logic and data to split.
- returns
(logic JsValue, data JsValue)
- Attributes
- protected[this]
-
def
serializeValueLogic(valueLogic: ValueLogic[_]): (JsValue, JsValue)
Returns tuple of serialized (logic, data) of scala data structure com.celadari.jsonlogicscala.tree.ValueLogic.
Returns tuple of serialized (logic, data) of scala data structure com.celadari.jsonlogicscala.tree.ValueLogic. Json-logic-typed format requires logic and data to split.
- returns
(logic JsValue, data JsValue)
- Attributes
- protected[this]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated