public double getDouble()

in src/main/java/org/apache/sling/commons/testing/jcr/MockProperty.java [73:78]


    public double getDouble() throws ValueFormatException, RepositoryException {
        if (values.length > 1) {
            throw new ValueFormatException();
        }
        return values[0].getDouble();
    }