diff options
| author | Jesse Morgan <jesse@jesterpm.net> | 2016-12-17 21:28:53 -0800 | 
|---|---|---|
| committer | Jesse Morgan <jesse@jesterpm.net> | 2016-12-17 21:28:53 -0800 | 
| commit | 54df2afaa61c6a03cbb4a33c9b90fa572b6d07b8 (patch) | |
| tree | 18147b92b969d25ffbe61935fb63035cac820dd0 /db-4.8.30/examples_java/src/collections/ship/basic/Weight.java | |
Berkeley DB 4.8 with rust build script for linux.
Diffstat (limited to 'db-4.8.30/examples_java/src/collections/ship/basic/Weight.java')
| -rw-r--r-- | db-4.8.30/examples_java/src/collections/ship/basic/Weight.java | 49 | 
1 files changed, 49 insertions, 0 deletions
| diff --git a/db-4.8.30/examples_java/src/collections/ship/basic/Weight.java b/db-4.8.30/examples_java/src/collections/ship/basic/Weight.java new file mode 100644 index 0000000..f5303fa --- /dev/null +++ b/db-4.8.30/examples_java/src/collections/ship/basic/Weight.java @@ -0,0 +1,49 @@ +/*- + * See the file LICENSE for redistribution information. + * + * Copyright (c) 2002-2009 Oracle.  All rights reserved. + * + * $Id$ + */ + +package collections.ship.basic; + +import java.io.Serializable; + +/** + * Weight represents a weight amount and unit of measure. + * + * <p> In this sample, Weight is embedded in part data values which are stored + * as Serial serialized objects; therefore Weight must be Serializable. </p> + * + * @author Mark Hayes + */ +public class Weight implements Serializable { + +    public final static String GRAMS = "grams"; +    public final static String OUNCES = "ounces"; + +    private double amount; +    private String units; + +    public Weight(double amount, String units) { + +        this.amount = amount; +        this.units = units; +    } + +    public final double getAmount() { + +        return amount; +    } + +    public final String getUnits() { + +        return units; +    } + +    public String toString() { + +        return "[" + amount + ' ' + units + ']'; +    } +} | 
