Package org.opengis.temporal

Examples of org.opengis.temporal.IndeterminateValue


     *
     * @generated modifiable
     */
    public Object parse(InstanceComponent instance, Object value)
            throws Exception {
        IndeterminateValue timeValue = IndeterminateValue.valueOf((String)value);
        return timeValue;
    }
View Full Code Here


    /**
     * Test of getIndeterminatePosition method, of class DefaultTemporalPosition.
     */
    @Test
    public void testGetIndeterminatePosition() {
        IndeterminateValue result = temporalPosition1.getIndeterminatePosition();
        assertFalse(temporalPosition2.getIndeterminatePosition().equals(result));
    }
View Full Code Here

    /**
     * Test of setIndeterminatePosition method, of class DefaultTemporalPosition.
     */
    @Test
    public void testSetIndeterminatePosition() {
        IndeterminateValue result = temporalPosition1.getIndeterminatePosition();
        ((DefaultTemporalPosition) temporalPosition1).setIndeterminatePosition(IndeterminateValue.BEFORE);
        assertFalse(temporalPosition1.getIndeterminatePosition().equals(result));
    }
View Full Code Here

TOP

Related Classes of org.opengis.temporal.IndeterminateValue

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.