public long getLong()

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


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