BuiltInTypeHandler typeHandler = builtInTypes.get(object);
if (typeHandler != null) {
typeHandler.handleTriple(subject, predicate, object);
} else if (axiomTypes.get(object) == null) {
// C(a)
OWLIndividual ind = consumer.translateIndividual(subject);
OWLClassExpression ce = consumer.translatorAccessor
.translateClassExpression(object);
consumer.addAxiom(consumer.getDataFactory()
.getOWLClassAssertionAxiom(ce, ind,
consumer.getPendingAnnotations()));