public boolean getBoolean()

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


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