Class ConstructYamlJsonFloat
- java.lang.Object
-
- org.snakeyaml.engine.v2.constructor.ConstructScalar
-
- org.snakeyaml.engine.v2.constructor.json.ConstructYamlJsonFloat
-
- All Implemented Interfaces:
ConstructNode
- Direct Known Subclasses:
ConstructYamlCoreFloat
public class ConstructYamlJsonFloat extends ConstructScalar
Create Double instances for float
-
-
Field Summary
-
Fields inherited from class org.snakeyaml.engine.v2.constructor.ConstructScalar
BOOL_VALUES
-
-
Constructor Summary
Constructors Constructor Description ConstructYamlJsonFloat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
construct(Node node)
Construct a Java instance with all the properties injected when it is possible.protected java.lang.Object
constructFromString(java.lang.String value)
-
Methods inherited from class org.snakeyaml.engine.v2.constructor.ConstructScalar
constructScalar
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.snakeyaml.engine.v2.api.ConstructNode
constructRecursive
-
-
-
-
Method Detail
-
construct
public java.lang.Object construct(Node node)
Description copied from interface:ConstructNode
Construct a Java instance with all the properties injected when it is possible.- Parameters:
node
- composed Node- Returns:
- a complete Java instance or empty collection instance if it is recursive
-
constructFromString
protected java.lang.Object constructFromString(java.lang.String value)
-
-