Package org.jboss.marshalling.util
Class DoubleFieldPutter
java.lang.Object
org.jboss.marshalling.util.FieldPutter
org.jboss.marshalling.util.DoubleFieldPutter
A field putter for double-type fields.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble
Get the double value of this field.getKind()
Get the kind of field being written.void
setDouble
(double value) Set the double value of this field.void
write
(Marshaller marshaller) Write the value of this field in its proper native format.
-
Field Details
-
value
private double value
-
-
Constructor Details
-
DoubleFieldPutter
public DoubleFieldPutter()
-
-
Method Details
-
write
Write the value of this field in its proper native format.- Specified by:
write
in classFieldPutter
- Parameters:
marshaller
- the marshaller to which to write- Throws:
IOException
- if an error occurs
-
getKind
Get the kind of field being written.- Specified by:
getKind
in classFieldPutter
- Returns:
- the kind of field
-
getDouble
public double getDouble()Get the double value of this field.- Overrides:
getDouble
in classFieldPutter
- Returns:
- the double value of this field
-
setDouble
public void setDouble(double value) Set the double value of this field.- Overrides:
setDouble
in classFieldPutter
- Parameters:
value
- the double value of this field
-