Package com.urbanairship.datacube.serializables

Examples of com.urbanairship.datacube.serializables.LongSerializable


        } else if(bucketType == weeks) {
            returnVal = weekFloor(inputTime);
        } else {
            throw new RuntimeException("Unexpected bucket type " + bucketType);
        }
        return new LongSerializable(returnVal.getMillis());
    }
View Full Code Here


    }

    @Override
    public CSerializable bucketForRead(Object coordinate, BucketType bucketType) {
        assert bucketType == BucketType.IDENTITY;
        return new LongSerializable((Long)coordinate);
    }
View Full Code Here

TOP

Related Classes of com.urbanairship.datacube.serializables.LongSerializable

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.