本文整理汇总了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");
}