本文整理汇总了Java中org.jf.util.CharSequenceUtils类的典型用法代码示例。如果您正苦于以下问题:Java CharSequenceUtils类的具体用法?Java CharSequenceUtils怎么用?Java CharSequenceUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CharSequenceUtils类属于org.jf.util包,在下文中一共展示了CharSequenceUtils类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(@Nullable Object o) {
if (o != null && o instanceof MethodReference) {
MethodReference other = (MethodReference)o;
return getDefiningClass().equals(other.getDefiningClass()) &&
getName().equals(other.getName()) &&
getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
}
return false;
}
示例2: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(@Nullable Object o) {
if (o instanceof Key) {
Key other = (Key)o;
return getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameters(), other.getParameters());
}
return false;
}
示例3: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(@Nullable Object o) {
if (o != null && o instanceof BuilderProtoReference) {
BuilderProtoReference other = (BuilderProtoReference)o;
return returnType.equals(other.returnType) &&
CharSequenceUtils.listEquals(parameterTypes, other.parameterTypes);
}
return false;
}
示例4: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override public boolean equals(Object o) {
if (o != null && o instanceof ProtoKey) {
ProtoKey other = (ProtoKey)o;
return getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
}
return false;
}
示例5: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals( Object o) {
if (o instanceof MethodProtoReference) {
MethodProtoReference other = (MethodProtoReference)o;
return getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
}
return false;
}
示例6: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals( Object o) {
if (o != null && o instanceof MethodReference) {
MethodReference other = (MethodReference)o;
return getDefiningClass().equals(other.getDefiningClass()) &&
getName().equals(other.getName()) &&
getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
}
return false;
}
示例7: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(@Nullable Object o) {
if (o != null && o instanceof MethodReference) {
MethodReference other = (MethodReference) o;
return getDefiningClass().equals(other.getDefiningClass()) &&
getName().equals(other.getName()) &&
getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
}
return false;
}
示例8: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(@Nullable Object o) {
if (o instanceof Key) {
Key other = (Key) o;
return getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameters(), other.getParameters());
}
return false;
}
示例9: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(@Nullable Object o) {
if (o != null && o instanceof BuilderProtoReference) {
BuilderProtoReference other = (BuilderProtoReference) o;
return returnType.equals(other.returnType) &&
CharSequenceUtils.listEquals(parameterTypes, other.parameterTypes);
}
return false;
}
示例10: equals
import org.jf.util.CharSequenceUtils; //导入依赖的package包/类
@Override
public boolean equals(Object o) {
if (o != null && o instanceof ProtoKey) {
ProtoKey other = (ProtoKey) o;
return getReturnType().equals(other.getReturnType()) &&
CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
}
return false;
}