Package org.apache.vxquery.runtime.functions.cast

Examples of org.apache.vxquery.runtime.functions.cast.CastToUnsignedByteOperation


                        break;
                    case ValueTag.XS_BYTE_TAG:
                        aCastToOp = new CastToByteOperation();
                        break;
                    case ValueTag.XS_UNSIGNED_BYTE_TAG:
                        aCastToOp = new CastToUnsignedByteOperation();
                        break;
                    default:
                        aCastToOp = new CastToUntypedAtomicOperation();
                }
            }
View Full Code Here


                        break;
                    case ValueTag.XS_BYTE_TAG:
                        aCastToOp = new CastToByteOperation();
                        break;
                    case ValueTag.XS_UNSIGNED_BYTE_TAG:
                        aCastToOp = new CastToUnsignedByteOperation();
                        break;
                    default:
                        aCastToOp = new CastToUntypedAtomicOperation();
                }
            }
View Full Code Here

                        break;
                    case ValueTag.XS_BYTE_TAG:
                        aCastToOp = new CastToByteOperation();
                        break;
                    case ValueTag.XS_UNSIGNED_BYTE_TAG:
                        aCastToOp = new CastToUnsignedByteOperation();
                        break;
                    default:
                        aCastToOp = new CastToUntypedAtomicOperation();
                }
            }
View Full Code Here

TOP

Related Classes of org.apache.vxquery.runtime.functions.cast.CastToUnsignedByteOperation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.