A B C G I M O R S T V W 

A

AbstractTestCollection - Class in org.eclipse.rdf4j.model.base
Abstract test class for Collection methods and contracts.
AbstractTestCollection(String) - Constructor for class org.eclipse.rdf4j.model.base.AbstractTestCollection
JUnit constructor.
AbstractTestObject - Class in org.eclipse.rdf4j.model.base
Abstract test class for Object methods and contracts.
AbstractTestObject(String) - Constructor for class org.eclipse.rdf4j.model.base.AbstractTestObject
JUnit constructor.
AbstractTestSet - Class in org.eclipse.rdf4j.model.base
Abstract test class for Set methods and contracts.
AbstractTestSet(String) - Constructor for class org.eclipse.rdf4j.model.base.AbstractTestSet
JUnit constructor.
ApacheSetTestCase - Class in org.eclipse.rdf4j.model.base
Extends the Apache Commons Collections test, AbstractTestSet to enable testing of the OpenRDF Model collection implementations.
ApacheSetTestCase(String) - Constructor for class org.eclipse.rdf4j.model.base.ApacheSetTestCase
 
areEqualElementsDistinguishable() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Specifies whether equal elements in the collection are, in fact, distinguishable with information not readily available.

B

BulkTest - Class in org.eclipse.rdf4j.model.base
A TestCase that can define both simple and bulk test methods.
BulkTest(String) - Constructor for class org.eclipse.rdf4j.model.base.BulkTest
Constructs a new BulkTest instance that will run the specified simple test.

C

clone() - Method in class org.eclipse.rdf4j.model.base.BulkTest
Creates a clone of this BulkTest.
cloneMapEntry(Map.Entry) - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Creates a new Map Entry that is independent of the first and the map.
collection - Variable in class org.eclipse.rdf4j.model.base.AbstractTestCollection
A collection instance that will be used for testing.
COLLECTIONS_MAJOR_VERSION - Static variable in class org.eclipse.rdf4j.model.base.AbstractTestObject
Current major release for Collections
confirmed - Variable in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Confirmed collection.
convert(Object[]) - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
A method that must be overridden to generate a set of non-null elements using the given seets.
createEmptyModel() - Method in class org.eclipse.rdf4j.model.ModelEqualityTest
 
createLiteral(Object) - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Creates a literal using the value of the seed.
createURI(Object) - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Creates a URI using the given seed in both the prefix and the suffix of the URI.

G

getCanonicalEmptyCollectionName(Object) - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
getCanonicalFullCollectionName(Object) - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
getCompatibilityVersion() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Get the version of Collections that this object tries to maintain serialization compatibility with.
getConfirmedSet() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Return the AbstractTestCollection.confirmed fixture, but cast as a Set.
getFullElements() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns an array of objects that are contained in a collection produced by AbstractTestCollection.makeFullCollection().
getFullNonNullElements() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns a list of elements suitable for return by AbstractTestCollection.getFullElements().
getFullNonNullElements() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Converts the standard list of elements returned by the super class implementation of AbstractTestCollection.getFullNonNullElements() into a set of objects suitable for insertion into a Model.
getFullNonNullStringElements() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns a list of string elements suitable for return by AbstractTestCollection.getFullElements().
getModelImplementation() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
Implementing tests must return a new, empty, Model for each call to this method.
getOneElement() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
 
getOtherElements() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns an array of elements that are not contained in a full collection.
getOtherNonNullElements() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns the default list of objects returned by AbstractTestCollection.getOtherElements().
getOtherNonNullElements() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Converts the standard list of elements returned by the super class implementation of AbstractTestCollection.getFullNonNullElements() into a set of objects suitable for insertion into a Model.
getOtherNonNullStringElements() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns a list of string elements suitable for return by AbstractTestCollection.getOtherElements().
getSet() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Return the AbstractTestCollection.collection fixture, but cast as a Set.

I

ignoredTests() - Method in class org.eclipse.rdf4j.model.base.BulkTest
Returns an array of test names to ignore.
isAddSupported() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns true if the collections produced by AbstractTestCollection.makeCollection() and AbstractTestCollection.makeFullCollection() support the add and addAll operations.
isEqualsCheckable() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns true to indicate that the collection supports equals() comparisons.
isEqualsCheckable() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Returns true to indicate that the collection supports equals() comparisons.
isEqualsCheckable() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Set equals method is defined.
isFailFastSupported() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns true to indicate that the collection supports fail fast iterators.
isNullSupported() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns true to indicate that the collection supports holding null.
isNullSupported() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Override this method to indicate that null's are not supported by Model implementations.
isRemoveSupported() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns true if the collections produced by AbstractTestCollection.makeCollection() and AbstractTestCollection.makeFullCollection() support the remove, removeAll, retainAll, clear and iterator().remove() methods.
isTestSerialization() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Is serialization testing supported.

M

makeCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Return a new, empty Collection to be used for testing.
makeCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Makes an empty collection by invoking AbstractTestSet.makeEmptySet().
makeConfirmedCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns a confirmed empty collection.
makeConfirmedCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Returns an empty Set for use in modification testing.
makeConfirmedCollection() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Returns an empty Set for use in modification testing.
makeConfirmedFullCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns a confirmed full collection.
makeConfirmedFullCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Returns a full Set for use in modification testing.
makeEmptyModel() - Method in class org.eclipse.rdf4j.model.ModelTest
 
makeEmptySet() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Makes an empty set.
makeEmptySet() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Makes an empty set.
makeFullCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns a full collection to be used for testing.
makeFullCollection() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Makes a full collection by invoking AbstractTestSet.makeFullSet().
makeFullSet() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Makes a full set by first creating an empty set and then adding all the elements returned by AbstractTestCollection.getFullElements().
makeObject() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Returns an empty collection for Object tests.
makeObject() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Implement this method to return the object to test.
makeSuite(Class) - Static method in class org.eclipse.rdf4j.model.base.BulkTest
Returns a TestSuite for testing all of the simple tests and all the bulk tests defined by the given class.
ModelEqualityTest - Class in org.eclipse.rdf4j.model
 
ModelEqualityTest() - Constructor for class org.eclipse.rdf4j.model.ModelEqualityTest
 
ModelNamespacesTest - Class in org.eclipse.rdf4j.model
An abstract test class to test the handling of namespaces by Model implementations.
ModelNamespacesTest() - Constructor for class org.eclipse.rdf4j.model.ModelNamespacesTest
 
ModelTest - Class in org.eclipse.rdf4j.model
 
ModelTest(String) - Constructor for class org.eclipse.rdf4j.model.ModelTest
 

O

org.eclipse.rdf4j.model - package org.eclipse.rdf4j.model
 
org.eclipse.rdf4j.model.base - package org.eclipse.rdf4j.model.base
 

R

readExternalFormFromBytes(byte[]) - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Read a Serialized or Externalized Object from bytes.
readExternalFormFromDisk(String) - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Reads a Serialized or Externalized Object from disk.
resetEmpty() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Resets the AbstractTestCollection.collection and AbstractTestCollection.confirmed fields to empty collections.
resetFull() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Resets the AbstractTestCollection.collection and AbstractTestCollection.confirmed fields to full collections.
runBare() - Method in class org.eclipse.rdf4j.model.ModelTest
 

S

setUp() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
 
skipSerializedCanonicalTests() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
suite(Class<? extends ModelTest>) - Static method in class org.eclipse.rdf4j.model.ModelTest
 
supportsEmptyCollections() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Override this method if a subclass is testing an object that cannot serialize an "empty" Collection.
supportsFullCollections() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Override this method if a subclass is testing an object that cannot serialize a "full" Collection.

T

tearDown() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
 
testBlankNodeGraphs() - Method in class org.eclipse.rdf4j.model.ModelEqualityTest
 
testCanonicalEmptyCollectionExists() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Tests serialization by comparing against a previously stored version in CVS.
testCanonicalFullCollectionExists() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Tests serialization by comparing against a previously stored version in CVS.
TESTCASES_DIR - Static variable in class org.eclipse.rdf4j.model.ModelEqualityTest
 
testCollectionAdd() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionAddAll() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionClear() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionContains() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionContainsAll() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionIsEmpty() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionIterator() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Tests the read-only functionality of Collection.iterator().
testCollectionIteratorFailFast() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Tests that the collection's iterator is fail-fast.
testCollectionIteratorRemove() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Tests removals from Collection.iterator().
testCollectionRemove() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionRemoveAll() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionRetainAll() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionSize() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionToArray() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionToArray2() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
testCollectionToString() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
Tests toString on a collection.
testEqualsNull() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
testGetNamespaceEmpty() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testGetNamespaceMultiple() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testGetNamespacesEmpty() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
Test method for Model.getNamespaces().
testGetNamespaceSingle() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testGetNamespacesMultiple() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
Test method for Model.getNamespaces().
testGetNamespacesSingle() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
Test method for Model.getNamespaces().
testObjectEqualsSelf() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
testObjectHashCodeEqualsContract() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
testObjectHashCodeEqualsSelfHashCode() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
testRemoveNamespaceEmpty() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testRemoveNamespaceMultiple() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testRemoveNamespaceSingle() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testSerializeDeserializeThenCompare() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
 
testSerializeDeserializeThenCompare() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
 
testSetEquals() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
testSetEquals() - Method in class org.eclipse.rdf4j.model.base.ApacheSetTestCase
Tests whether the set that is under test is equal to a confirmed set.
testSetHashCode() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
testSetNamespaceNamespace() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testSetNamespaceNamespaceSamePrefix() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testSetNamespaceSamePrefix() - Method in class org.eclipse.rdf4j.model.ModelNamespacesTest
testSimpleSerialization() - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Sanity check method, makes sure that any Serializable class can be serialized and de-serialized in memory, using the handy makeObject() method
testSparqlGraph11() - Method in class org.eclipse.rdf4j.model.ModelEqualityTest
 
testTest001() - Method in class org.eclipse.rdf4j.model.ModelEqualityTest
 
testUnsupportedAdd() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
If AbstractTestCollection.isAddSupported() returns false, tests that add operations raise UnsupportedOperationException.
testUnsupportedRemove() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
If isRemoveSupported() returns false, tests to see that remove operations raise an UnsupportedOperationException.
toString() - Method in class org.eclipse.rdf4j.model.base.BulkTest
Returns the display name of this BulkTest.

V

verify() - Method in class org.eclipse.rdf4j.model.base.AbstractTestCollection
verify() - Method in class org.eclipse.rdf4j.model.base.AbstractTestSet
Provides additional verifications for sets.

W

writeExternalFormToBytes(Serializable) - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Converts a Serializable or Externalizable object to bytes.
writeExternalFormToDisk(Serializable, String) - Method in class org.eclipse.rdf4j.model.base.AbstractTestObject
Write a Serializable or Externalizable object as a file at the given path.
A B C G I M O R S T V W 

Copyright © 2015-2016 Eclipse Foundation. All Rights Reserved.