INNER CODE UNIT · Java
panicModeRemoveAll
objectbox/objectbox-java · objectbox-java/src/main/java/io/objectbox/Box.java:592
public long panicModeRemoveAll() {
return store.panicModeRemoveAllObjects(getEntityInfo().getEntityId());
}
/**
* Create a query with no conditions.
*
* @see #query(QueryCondition)
*/
public QueryBuilder<T> query() {
return new QueryBuilder<>(this, store.getNativeStore(), store.getDbName(entityClass));
}
/**
* Applies the given query conditions and returns the builder for further customization, such as result order.
* Build the condition using the properties from your entity underscore classes.
* <p>
* An example with a nested OR condition: