Package uk.org.ogsadai.data

Examples of uk.org.ogsadai.data.LongData


        {
            return new DataValue[] {new StringData((String)object)};
        }
        else if (object instanceof Long)
        {
            return new DataValue[] {new LongData((Long)object)};
        }
        else if (object instanceof Integer)
        {
            return new DataValue[] {new IntegerData((Integer)object)};
        }
View Full Code Here

TOP

Related Classes of uk.org.ogsadai.data.LongData

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.