本文整理汇总了Java中com.squareup.wire.internal.Internal.equals方法的典型用法代码示例。如果您正苦于以下问题:Java Internal.equals方法的具体用法?Java Internal.equals怎么用?Java Internal.equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.squareup.wire.internal.Internal
的用法示例。
在下文中一共展示了Internal.equals方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof ShapeStyle)) return false;
ShapeStyle o = (ShapeStyle) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(fill, o.fill)
&& Internal.equals(stroke, o.stroke)
&& Internal.equals(strokeWidth, o.strokeWidth)
&& Internal.equals(lineCap, o.lineCap)
&& Internal.equals(lineJoin, o.lineJoin)
&& Internal.equals(miterLimit, o.miterLimit)
&& Internal.equals(lineDashI, o.lineDashI)
&& Internal.equals(lineDashII, o.lineDashII)
&& Internal.equals(lineDashIII, o.lineDashIII);
}
示例2: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof DescriptorProto)) return false;
DescriptorProto o = (DescriptorProto) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(name, o.name)
&& field.equals(o.field)
&& extension.equals(o.extension)
&& nested_type.equals(o.nested_type)
&& enum_type.equals(o.enum_type)
&& extension_range.equals(o.extension_range)
&& oneof_decl.equals(o.oneof_decl)
&& Internal.equals(options, o.options)
&& reserved_range.equals(o.reserved_range)
&& reserved_name.equals(o.reserved_name);
}
示例3: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof Phone)) return false;
Phone o = (Phone) other;
return Internal.equals(unknownFields(), o.unknownFields())
&& Internal.equals(number, o.number);
}
示例4: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof FrameEntity)) return false;
FrameEntity o = (FrameEntity) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(alpha, o.alpha)
&& Internal.equals(layout, o.layout)
&& Internal.equals(transform, o.transform)
&& Internal.equals(clipPath, o.clipPath)
&& shapes.equals(o.shapes);
}
示例5: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof MovieParams)) return false;
MovieParams o = (MovieParams) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(viewBoxWidth, o.viewBoxWidth)
&& Internal.equals(viewBoxHeight, o.viewBoxHeight)
&& Internal.equals(fps, o.fps)
&& Internal.equals(frames, o.frames);
}
示例6: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof Layout)) return false;
Layout o = (Layout) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(x, o.x)
&& Internal.equals(y, o.y)
&& Internal.equals(width, o.width)
&& Internal.equals(height, o.height);
}
示例7: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof Transform)) return false;
Transform o = (Transform) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(a, o.a)
&& Internal.equals(b, o.b)
&& Internal.equals(c, o.c)
&& Internal.equals(d, o.d)
&& Internal.equals(tx, o.tx)
&& Internal.equals(ty, o.ty);
}
示例8: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof MovieEntity)) return false;
MovieEntity o = (MovieEntity) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(version, o.version)
&& Internal.equals(params, o.params)
&& images.equals(o.images)
&& sprites.equals(o.sprites);
}
示例9: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof SpriteEntity)) return false;
SpriteEntity o = (SpriteEntity) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(imageKey, o.imageKey)
&& frames.equals(o.frames);
}
示例10: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof Sample)) return false;
Sample o = (Sample) other;
return Internal.equals(unknownFields(), o.unknownFields())
&& Internal.equals(x, o.x)
&& Internal.equals(y, o.y);
}
示例11: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof BgReadingMessage)) return false;
BgReadingMessage o = (BgReadingMessage) other;
return Internal.equals(unknownFields(), o.unknownFields())
&& Internal.equals(timestamp, o.timestamp)
&& Internal.equals(time_since_sensor_started, o.time_since_sensor_started)
&& Internal.equals(raw_data, o.raw_data)
&& Internal.equals(filtered_data, o.filtered_data)
&& Internal.equals(age_adjusted_raw_value, o.age_adjusted_raw_value)
&& Internal.equals(calibration_flag, o.calibration_flag)
&& Internal.equals(calculated_value, o.calculated_value)
&& Internal.equals(filtered_calculated_value, o.filtered_calculated_value)
&& Internal.equals(calculated_value_slope, o.calculated_value_slope)
&& Internal.equals(a, o.a)
&& Internal.equals(b, o.b)
&& Internal.equals(c, o.c)
&& Internal.equals(ra, o.ra)
&& Internal.equals(rb, o.rb)
&& Internal.equals(rc, o.rc)
&& Internal.equals(uuid, o.uuid)
&& Internal.equals(calibration_uuid, o.calibration_uuid)
&& Internal.equals(sensor_uuid, o.sensor_uuid)
&& Internal.equals(ignoreforstats, o.ignoreforstats)
&& Internal.equals(raw_calculated, o.raw_calculated)
&& Internal.equals(hide_slope, o.hide_slope)
&& Internal.equals(noise, o.noise);
}
示例12: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof BgReadingMultiMessage)) return false;
BgReadingMultiMessage o = (BgReadingMultiMessage) other;
return Internal.equals(unknownFields(), o.unknownFields())
&& Internal.equals(bgreading_message, o.bgreading_message);
}
示例13: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof BloodTestMultiMessage)) return false;
BloodTestMultiMessage o = (BloodTestMultiMessage) other;
return Internal.equals(unknownFields(), o.unknownFields())
&& Internal.equals(bloodtest_message, o.bloodtest_message);
}
示例14: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof BloodTestMessage)) return false;
BloodTestMessage o = (BloodTestMessage) other;
return Internal.equals(unknownFields(), o.unknownFields())
&& Internal.equals(timestamp, o.timestamp)
&& Internal.equals(mgdl, o.mgdl)
&& Internal.equals(created_timestamp, o.created_timestamp)
&& Internal.equals(state, o.state)
&& Internal.equals(source, o.source)
&& Internal.equals(uuid, o.uuid);
}
示例15: equals
import com.squareup.wire.internal.Internal; //导入方法依赖的package包/类
@Override
public boolean equals(Object other) {
if (other == this) return true;
if (!(other instanceof Talk)) return false;
Talk o = (Talk) other;
return unknownFields().equals(o.unknownFields())
&& Internal.equals(id, o.id)
&& Internal.equals(date, o.date)
&& Internal.equals(room, o.room)
&& Internal.equals(title, o.title)
&& Internal.equals(speaker, o.speaker);
}