Package org.jboss.marshalling.util
Class DoubleFieldPutter
- java.lang.Object
-
- org.jboss.marshalling.util.FieldPutter
-
- org.jboss.marshalling.util.DoubleFieldPutter
-
public class DoubleFieldPutter extends FieldPutter
A field putter for double-type fields.
-
-
Constructor Summary
Constructors Constructor Description DoubleFieldPutter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetDouble()Get the double value of this field.KindgetKind()Get the kind of field being written.voidsetDouble(double value)Set the double value of this field.voidwrite(Marshaller marshaller)Write the value of this field in its proper native format.
-
-
-
Method Detail
-
write
public void write(Marshaller marshaller) throws IOException
Write the value of this field in its proper native format.- Specified by:
writein classFieldPutter- Parameters:
marshaller- the marshaller to which to write- Throws:
IOException- if an error occurs
-
getKind
public Kind getKind()
Get the kind of field being written.- Specified by:
getKindin classFieldPutter- Returns:
- the kind of field
-
getDouble
public double getDouble()
Get the double value of this field.- Overrides:
getDoublein classFieldPutter- Returns:
- the double value of this field
-
setDouble
public void setDouble(double value)
Set the double value of this field.- Overrides:
setDoublein classFieldPutter- Parameters:
value- the double value of this field
-
-