com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evolve-grpc Show documentation
Show all versions of evolve-grpc Show documentation
Protobuf and gRPC definitions for the evolve platform
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: zepben/protobuf/cim/iec61968/assetinfo/WireInfo.proto
package com.zepben.protobuf.cim.iec61968.assetinfo;
/**
*
**
* Wire data that can be specified per line segment phase, or for the line segment as a whole in case its phases all
* have the same wire characteristics.
*
*
* Protobuf type {@code zepben.protobuf.cim.iec61968.assetinfo.WireInfo}
*/
public final class WireInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:zepben.protobuf.cim.iec61968.assetinfo.WireInfo)
WireInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use WireInfo.newBuilder() to construct.
private WireInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private WireInfo() {
material_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new WireInfo();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.zepben.protobuf.cim.iec61968.assetinfo.WireInfoOuterClass.internal_static_zepben_protobuf_cim_iec61968_assetinfo_WireInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.zepben.protobuf.cim.iec61968.assetinfo.WireInfoOuterClass.internal_static_zepben_protobuf_cim_iec61968_assetinfo_WireInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.class, com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.Builder.class);
}
private int bitField0_;
public static final int AI_FIELD_NUMBER = 1;
private com.zepben.protobuf.cim.iec61968.assets.AssetInfo ai_;
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
* @return Whether the ai field is set.
*/
@java.lang.Override
public boolean hasAi() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
* @return The ai.
*/
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assets.AssetInfo getAi() {
return ai_ == null ? com.zepben.protobuf.cim.iec61968.assets.AssetInfo.getDefaultInstance() : ai_;
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assets.AssetInfoOrBuilder getAiOrBuilder() {
return ai_ == null ? com.zepben.protobuf.cim.iec61968.assets.AssetInfo.getDefaultInstance() : ai_;
}
public static final int RATEDCURRENT_FIELD_NUMBER = 2;
private int ratedCurrent_ = 0;
/**
*
**
* Current carrying capacity of the wire under stated thermal conditions.
*
*
* int32 ratedCurrent = 2;
* @return The ratedCurrent.
*/
@java.lang.Override
public int getRatedCurrent() {
return ratedCurrent_;
}
public static final int MATERIAL_FIELD_NUMBER = 3;
private int material_ = 0;
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @return The enum numeric value on the wire for material.
*/
@java.lang.Override public int getMaterialValue() {
return material_;
}
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @return The material.
*/
@java.lang.Override public com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind getMaterial() {
com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind result = com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind.forNumber(material_);
return result == null ? com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind.UNRECOGNIZED : result;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getAi());
}
if (ratedCurrent_ != 0) {
output.writeInt32(2, ratedCurrent_);
}
if (material_ != com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind.UNKNOWN.getNumber()) {
output.writeEnum(3, material_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getAi());
}
if (ratedCurrent_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, ratedCurrent_);
}
if (material_ != com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind.UNKNOWN.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, material_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo)) {
return super.equals(obj);
}
com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo other = (com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo) obj;
if (hasAi() != other.hasAi()) return false;
if (hasAi()) {
if (!getAi()
.equals(other.getAi())) return false;
}
if (getRatedCurrent()
!= other.getRatedCurrent()) return false;
if (material_ != other.material_) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasAi()) {
hash = (37 * hash) + AI_FIELD_NUMBER;
hash = (53 * hash) + getAi().hashCode();
}
hash = (37 * hash) + RATEDCURRENT_FIELD_NUMBER;
hash = (53 * hash) + getRatedCurrent();
hash = (37 * hash) + MATERIAL_FIELD_NUMBER;
hash = (53 * hash) + material_;
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
**
* Wire data that can be specified per line segment phase, or for the line segment as a whole in case its phases all
* have the same wire characteristics.
*
*
* Protobuf type {@code zepben.protobuf.cim.iec61968.assetinfo.WireInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:zepben.protobuf.cim.iec61968.assetinfo.WireInfo)
com.zepben.protobuf.cim.iec61968.assetinfo.WireInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.zepben.protobuf.cim.iec61968.assetinfo.WireInfoOuterClass.internal_static_zepben_protobuf_cim_iec61968_assetinfo_WireInfo_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.zepben.protobuf.cim.iec61968.assetinfo.WireInfoOuterClass.internal_static_zepben_protobuf_cim_iec61968_assetinfo_WireInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.class, com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.Builder.class);
}
// Construct using com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getAiFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
ai_ = null;
if (aiBuilder_ != null) {
aiBuilder_.dispose();
aiBuilder_ = null;
}
ratedCurrent_ = 0;
material_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.zepben.protobuf.cim.iec61968.assetinfo.WireInfoOuterClass.internal_static_zepben_protobuf_cim_iec61968_assetinfo_WireInfo_descriptor;
}
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo getDefaultInstanceForType() {
return com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.getDefaultInstance();
}
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo build() {
com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo buildPartial() {
com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo result = new com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.ai_ = aiBuilder_ == null
? ai_
: aiBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.ratedCurrent_ = ratedCurrent_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.material_ = material_;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo) {
return mergeFrom((com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo other) {
if (other == com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo.getDefaultInstance()) return this;
if (other.hasAi()) {
mergeAi(other.getAi());
}
if (other.getRatedCurrent() != 0) {
setRatedCurrent(other.getRatedCurrent());
}
if (other.material_ != 0) {
setMaterialValue(other.getMaterialValue());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
input.readMessage(
getAiFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 16: {
ratedCurrent_ = input.readInt32();
bitField0_ |= 0x00000002;
break;
} // case 16
case 24: {
material_ = input.readEnum();
bitField0_ |= 0x00000004;
break;
} // case 24
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.zepben.protobuf.cim.iec61968.assets.AssetInfo ai_;
private com.google.protobuf.SingleFieldBuilderV3<
com.zepben.protobuf.cim.iec61968.assets.AssetInfo, com.zepben.protobuf.cim.iec61968.assets.AssetInfo.Builder, com.zepben.protobuf.cim.iec61968.assets.AssetInfoOrBuilder> aiBuilder_;
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
* @return Whether the ai field is set.
*/
public boolean hasAi() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
* @return The ai.
*/
public com.zepben.protobuf.cim.iec61968.assets.AssetInfo getAi() {
if (aiBuilder_ == null) {
return ai_ == null ? com.zepben.protobuf.cim.iec61968.assets.AssetInfo.getDefaultInstance() : ai_;
} else {
return aiBuilder_.getMessage();
}
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
public Builder setAi(com.zepben.protobuf.cim.iec61968.assets.AssetInfo value) {
if (aiBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ai_ = value;
} else {
aiBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
public Builder setAi(
com.zepben.protobuf.cim.iec61968.assets.AssetInfo.Builder builderForValue) {
if (aiBuilder_ == null) {
ai_ = builderForValue.build();
} else {
aiBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
public Builder mergeAi(com.zepben.protobuf.cim.iec61968.assets.AssetInfo value) {
if (aiBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
ai_ != null &&
ai_ != com.zepben.protobuf.cim.iec61968.assets.AssetInfo.getDefaultInstance()) {
getAiBuilder().mergeFrom(value);
} else {
ai_ = value;
}
} else {
aiBuilder_.mergeFrom(value);
}
if (ai_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
public Builder clearAi() {
bitField0_ = (bitField0_ & ~0x00000001);
ai_ = null;
if (aiBuilder_ != null) {
aiBuilder_.dispose();
aiBuilder_ = null;
}
onChanged();
return this;
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
public com.zepben.protobuf.cim.iec61968.assets.AssetInfo.Builder getAiBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getAiFieldBuilder().getBuilder();
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
public com.zepben.protobuf.cim.iec61968.assets.AssetInfoOrBuilder getAiOrBuilder() {
if (aiBuilder_ != null) {
return aiBuilder_.getMessageOrBuilder();
} else {
return ai_ == null ?
com.zepben.protobuf.cim.iec61968.assets.AssetInfo.getDefaultInstance() : ai_;
}
}
/**
*
**
* AssetInfo fields for this WireInfo
*
*
* .zepben.protobuf.cim.iec61968.assets.AssetInfo ai = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.zepben.protobuf.cim.iec61968.assets.AssetInfo, com.zepben.protobuf.cim.iec61968.assets.AssetInfo.Builder, com.zepben.protobuf.cim.iec61968.assets.AssetInfoOrBuilder>
getAiFieldBuilder() {
if (aiBuilder_ == null) {
aiBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.zepben.protobuf.cim.iec61968.assets.AssetInfo, com.zepben.protobuf.cim.iec61968.assets.AssetInfo.Builder, com.zepben.protobuf.cim.iec61968.assets.AssetInfoOrBuilder>(
getAi(),
getParentForChildren(),
isClean());
ai_ = null;
}
return aiBuilder_;
}
private int ratedCurrent_ ;
/**
*
**
* Current carrying capacity of the wire under stated thermal conditions.
*
*
* int32 ratedCurrent = 2;
* @return The ratedCurrent.
*/
@java.lang.Override
public int getRatedCurrent() {
return ratedCurrent_;
}
/**
*
**
* Current carrying capacity of the wire under stated thermal conditions.
*
*
* int32 ratedCurrent = 2;
* @param value The ratedCurrent to set.
* @return This builder for chaining.
*/
public Builder setRatedCurrent(int value) {
ratedCurrent_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
**
* Current carrying capacity of the wire under stated thermal conditions.
*
*
* int32 ratedCurrent = 2;
* @return This builder for chaining.
*/
public Builder clearRatedCurrent() {
bitField0_ = (bitField0_ & ~0x00000002);
ratedCurrent_ = 0;
onChanged();
return this;
}
private int material_ = 0;
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @return The enum numeric value on the wire for material.
*/
@java.lang.Override public int getMaterialValue() {
return material_;
}
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @param value The enum numeric value on the wire for material to set.
* @return This builder for chaining.
*/
public Builder setMaterialValue(int value) {
material_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @return The material.
*/
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind getMaterial() {
com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind result = com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind.forNumber(material_);
return result == null ? com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind.UNRECOGNIZED : result;
}
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @param value The material to set.
* @return This builder for chaining.
*/
public Builder setMaterial(com.zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
material_ = value.getNumber();
onChanged();
return this;
}
/**
*
**
* Conductor material.
*
*
* .zepben.protobuf.cim.iec61968.assetinfo.WireMaterialKind material = 3;
* @return This builder for chaining.
*/
public Builder clearMaterial() {
bitField0_ = (bitField0_ & ~0x00000004);
material_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:zepben.protobuf.cim.iec61968.assetinfo.WireInfo)
}
// @@protoc_insertion_point(class_scope:zepben.protobuf.cim.iec61968.assetinfo.WireInfo)
private static final com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo();
}
public static com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public WireInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.zepben.protobuf.cim.iec61968.assetinfo.WireInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}