GLS ShipIT  2.8.11
GLS ShipIT - REST services
Adapter3.java
Go to the documentation of this file.
1 
2 package org.w3._2001.xmlschema;
3 
4 import javax.xml.bind.annotation.adapters.XmlAdapter;
5 import java.math.BigDecimal;
6 
7 public class Adapter3
8  extends XmlAdapter<String, BigDecimal> {
9 
10 
11  public BigDecimal unmarshal(String value) {
12 
14  }
15 
16  public String marshal(BigDecimal value) {
17 
19  }
20 
21 }
static BigDecimal unmarshalBigDecimal(String value)
String marshal(BigDecimal value)
Definition: Adapter3.java:16
BigDecimal unmarshal(String value)
Definition: Adapter3.java:11
static String marshalBigDecimal(BigDecimal value)