blob: d0a4a63c532b997a55d45abe09fc03bd5a823f1c [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.xml.bind;
import java.util.Calendar;
import java.math.BigDecimal;
import java.math.BigInteger;
import javax.xml.namespace.QName;
import javax.xml.namespace.NamespaceContext;
public interface DatatypeConverterInterface {
String parseAnySimpleType(String lexicalXSDAnySimpleType);
byte[] parseBase64Binary(String lexicalXSDBase64Binary);
boolean parseBoolean(String lexicalXSDBoolean);
byte parseByte(String lexicalXSDByte);
Calendar parseDate(String lexicalXSDDate);
Calendar parseDateTime(String lexicalXSDDateTime);
BigDecimal parseDecimal(String lexicalXSDDecimal);
double parseDouble(String lexicalXSDDouble);
float parseFloat(String lexicalXSDFloat);
byte[] parseHexBinary(String lexicalXSDHexBinary);
int parseInt(String lexicalXSDInt);
BigInteger parseInteger(String lexicalXSDInteger);
long parseLong(String lexicalXSDLong);
QName parseQName(String lexicalXSDQName, NamespaceContext nsc);
short parseShort(String lexicalXSDShort);
String parseString(String lexicalXSDString);
Calendar parseTime(String lexicalXSDTime);
long parseUnsignedInt(String lexicalXSDUnsignedInt);
int parseUnsignedShort(String lexicalXSDUnsignedShort);
String printAnySimpleType(String val);
String printBase64Binary(byte[] val);
String printBoolean(boolean val);
String printByte(byte val);
String printDate(Calendar val);
String printDateTime(Calendar val);
String printDecimal(BigDecimal val);
String printDouble(double val);
String printFloat(float val);
String printHexBinary(byte[] val);
String printInt(int val);
String printInteger(BigInteger val);
String printLong(long val);
String printQName(QName val, NamespaceContext nsc);
String printShort(short val);
String printString(String val);
String printTime(Calendar val);
String printUnsignedInt(long val);
String printUnsignedShort(int val);
}