本文整理匯總了Java中org.voltdb.utils.NotImplementedException類的典型用法代碼示例。如果您正苦於以下問題:Java NotImplementedException類的具體用法?Java NotImplementedException怎麽用?Java NotImplementedException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
NotImplementedException類屬於org.voltdb.utils包,在下文中一共展示了NotImplementedException類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: executeQueries
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public <T extends Estimate> T executeQueries(EstimatorState state, Statement[] catalog_stmts, PartitionSet[] partitions) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例2: completeTransaction
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
protected void completeTransaction(EstimatorState state, Status status) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例3: getTouchedPartitions
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public PartitionSet getTouchedPartitions(EstimationThresholds t) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例4: isSinglePartitioned
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean isSinglePartitioned(EstimationThresholds t) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例5: isReadOnlyPartition
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean isReadOnlyPartition(EstimationThresholds t, int partition) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例6: isReadOnlyAllPartitions
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean isReadOnlyAllPartitions(EstimationThresholds t) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例7: isWritePartition
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean isWritePartition(EstimationThresholds t, int partition) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例8: getWritePartitions
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public PartitionSet getWritePartitions(EstimationThresholds t) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例9: isDonePartition
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean isDonePartition(EstimationThresholds t, int partition) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例10: getDonePartitions
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public PartitionSet getDonePartitions(EstimationThresholds t) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例11: isAbortable
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean isAbortable(EstimationThresholds t) {
throw new NotImplementedException(this.getClass().getSimpleName() + " does not implement this method");
}
示例12: getQueryEstimate
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public List<CountedStatement> getQueryEstimate(int partition) {
throw new NotImplementedException(ClassUtil.getCurrentMethodName() + " is not implemented");
}
示例13: add
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean add(T e) {
throw new NotImplementedException(this + " is a read-only Catalog object");
}
示例14: addAll
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public boolean addAll(Collection<? extends T> c) {
throw new NotImplementedException(this + " is a read-only Catalog object");
}
示例15: clear
import org.voltdb.utils.NotImplementedException; //導入依賴的package包/類
@Override
public void clear() {
throw new NotImplementedException(this + " is a read-only Catalog object");
}