Package com.altamiracorp.bigtable.model

Examples of com.altamiracorp.bigtable.model.Value


@RunWith(JUnit4.class)
public class ValueTest {
    @Test
    public void testLongConversion() {
        for (long i = 0; i < 10000; i++) {
            Value value = new Value(new Long(i));
            assertEquals(i, value.toLong().longValue());
        }
    }
View Full Code Here


    public AuditEntity() {
        super(NAME);
    }

    public String getAnalyzedBy () {
        Value value = get(ANALYZED_BY);

        return value != null ? Value.toString(get(ANALYZED_BY)) : null;
    }
View Full Code Here

TOP

Related Classes of com.altamiracorp.bigtable.model.Value

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.