本文整理汇总了Java中edu.umd.cs.findbugs.ba.XFactory.compare方法的典型用法代码示例。如果您正苦于以下问题:Java XFactory.compare方法的具体用法?Java XFactory.compare怎么用?Java XFactory.compare使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类edu.umd.cs.findbugs.ba.XFactory
的用法示例。
在下文中一共展示了XFactory.compare方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: compareTo
import edu.umd.cs.findbugs.ba.XFactory; //导入方法依赖的package包/类
@Override
public int compareTo(ComparableMethod rhs) {
if (rhs instanceof MethodDescriptor) {
return FieldOrMethodDescriptor.compareTo(this, (MethodDescriptor) rhs);
}
if (rhs instanceof XMethod) {
return XFactory.compare((XMethod) this, (XMethod) rhs);
}
throw new ClassCastException("Can't compare a " + this.getClass().getName() + " to a " + rhs.getClass().getName());
}
示例2: compareTo
import edu.umd.cs.findbugs.ba.XFactory; //导入方法依赖的package包/类
@Override
public int compareTo(ComparableField rhs) {
if (rhs instanceof FieldDescriptor) {
return FieldOrMethodDescriptor.compareTo(this, (FieldDescriptor) rhs);
}
if (rhs instanceof XField) {
return XFactory.compare((XField) this, (XField) rhs);
}
throw new ClassCastException("Can't compare a " + this.getClass().getName() + " to a " + rhs.getClass().getName());
}