All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.postgis.binary.ByteSetter Maven / Gradle / Ivy

Go to download

PostGIS adds support for geographic objects to the PostgreSQL object-relational database.

There is a newer version: 2023.1.0
Show newest version
/*
 * ByteSetter.java
 * 
 * PostGIS extension for PostgreSQL JDBC driver - Binary Parser
 * 
 * (C) 2005 Markus Schaber, [email protected]
 *
 * (C) 2015 Phillip Ross, [email protected]
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 */

package org.postgis.binary;

public abstract class ByteSetter {

    /**
     * Set a byte.
     *
     * @param b byte value to set with
     * @param index index to set
     */
    public abstract void set(byte b, int index);

    public static class BinaryByteSetter extends ByteSetter {
        private byte[] array;

        public BinaryByteSetter(int length) {
            this.array = new byte[length];
        }

        public void set(byte b, int index) {
            array[index] = b; // mask out sign-extended bits.
        }

        public byte[] result() {
            return array;
        }
        
        public String toString() {
            char[] arr = new char[array.length];
            for (int i=0; i>> 4) & 0xF];
            rep[index + 1] = hextypes[b & 0xF];
        }

        public char[] resultAsArray() {
            return rep;
        }

        public String result() {
            return new String(rep);
        }
        
        public String toString() {
            return new String(rep);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy