All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.daos.obj.attr.DaosEcAttr Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: DaosObjectAttribute.proto
package io.daos.obj.attr;
/**
* Protobuf type {@code objattr.DaosEcAttr}
*/
public final class DaosEcAttr extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:objattr.DaosEcAttr)
DaosEcAttrOrBuilder {
private static final long serialVersionUID = 0L;
// Use DaosEcAttr.newBuilder() to construct.
private DaosEcAttr(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DaosEcAttr() {
}
@Override
@SuppressWarnings({"unused"})
protected Object newInstance(
UnusedPrivateParameter unused) {
return new DaosEcAttr();
}
@Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private DaosEcAttr(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
eK_ = input.readUInt32();
break;
}
case 16: {
eP_ = input.readUInt32();
break;
}
case 24: {
eLen_ = input.readUInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return DaosObjAttrClasses.internal_static_objattr_DaosEcAttr_descriptor;
}
@Override
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return DaosObjAttrClasses.internal_static_objattr_DaosEcAttr_fieldAccessorTable
.ensureFieldAccessorsInitialized(
DaosEcAttr.class, Builder.class);
}
public static final int E_K_FIELD_NUMBER = 1;
private int eK_;
/**
* uint32 e_k = 1;
* @return The eK.
*/
@Override
public int getEK() {
return eK_;
}
public static final int E_P_FIELD_NUMBER = 2;
private int eP_;
/**
* uint32 e_p = 2;
* @return The eP.
*/
@Override
public int getEP() {
return eP_;
}
public static final int E_LEN_FIELD_NUMBER = 3;
private int eLen_;
/**
* uint32 e_len = 3;
* @return The eLen.
*/
@Override
public int getELen() {
return eLen_;
}
private byte memoizedIsInitialized = -1;
@Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (eK_ != 0) {
output.writeUInt32(1, eK_);
}
if (eP_ != 0) {
output.writeUInt32(2, eP_);
}
if (eLen_ != 0) {
output.writeUInt32(3, eLen_);
}
unknownFields.writeTo(output);
}
@Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (eK_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, eK_);
}
if (eP_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(2, eP_);
}
if (eLen_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(3, eLen_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@Override
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof DaosEcAttr)) {
return super.equals(obj);
}
DaosEcAttr other = (DaosEcAttr) obj;
if (getEK()
!= other.getEK()) return false;
if (getEP()
!= other.getEP()) return false;
if (getELen()
!= other.getELen()) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + E_K_FIELD_NUMBER;
hash = (53 * hash) + getEK();
hash = (37 * hash) + E_P_FIELD_NUMBER;
hash = (53 * hash) + getEP();
hash = (37 * hash) + E_LEN_FIELD_NUMBER;
hash = (53 * hash) + getELen();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static DaosEcAttr parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static DaosEcAttr parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static DaosEcAttr parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static DaosEcAttr parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static DaosEcAttr parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static DaosEcAttr parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static DaosEcAttr parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static DaosEcAttr 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 DaosEcAttr parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static DaosEcAttr 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 DaosEcAttr parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static DaosEcAttr parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(DaosEcAttr prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code objattr.DaosEcAttr}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:objattr.DaosEcAttr)
DaosEcAttrOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return DaosObjAttrClasses.internal_static_objattr_DaosEcAttr_descriptor;
}
@Override
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return DaosObjAttrClasses.internal_static_objattr_DaosEcAttr_fieldAccessorTable
.ensureFieldAccessorsInitialized(
DaosEcAttr.class, Builder.class);
}
// Construct using io.daos.obj.attr.DaosEcAttr.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@Override
public Builder clear() {
super.clear();
eK_ = 0;
eP_ = 0;
eLen_ = 0;
return this;
}
@Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return DaosObjAttrClasses.internal_static_objattr_DaosEcAttr_descriptor;
}
@Override
public DaosEcAttr getDefaultInstanceForType() {
return DaosEcAttr.getDefaultInstance();
}
@Override
public DaosEcAttr build() {
DaosEcAttr result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@Override
public DaosEcAttr buildPartial() {
DaosEcAttr result = new DaosEcAttr(this);
result.eK_ = eK_;
result.eP_ = eP_;
result.eLen_ = eLen_;
onBuilt();
return result;
}
@Override
public Builder clone() {
return super.clone();
}
@Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.setField(field, value);
}
@Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return super.setRepeatedField(field, index, value);
}
@Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.addRepeatedField(field, value);
}
@Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof DaosEcAttr) {
return mergeFrom((DaosEcAttr)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(DaosEcAttr other) {
if (other == DaosEcAttr.getDefaultInstance()) return this;
if (other.getEK() != 0) {
setEK(other.getEK());
}
if (other.getEP() != 0) {
setEP(other.getEP());
}
if (other.getELen() != 0) {
setELen(other.getELen());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@Override
public final boolean isInitialized() {
return true;
}
@Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
DaosEcAttr parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (DaosEcAttr) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int eK_ ;
/**
* uint32 e_k = 1;
* @return The eK.
*/
@Override
public int getEK() {
return eK_;
}
/**
* uint32 e_k = 1;
* @param value The eK to set.
* @return This builder for chaining.
*/
public Builder setEK(int value) {
eK_ = value;
onChanged();
return this;
}
/**
* uint32 e_k = 1;
* @return This builder for chaining.
*/
public Builder clearEK() {
eK_ = 0;
onChanged();
return this;
}
private int eP_ ;
/**
* uint32 e_p = 2;
* @return The eP.
*/
@Override
public int getEP() {
return eP_;
}
/**
* uint32 e_p = 2;
* @param value The eP to set.
* @return This builder for chaining.
*/
public Builder setEP(int value) {
eP_ = value;
onChanged();
return this;
}
/**
* uint32 e_p = 2;
* @return This builder for chaining.
*/
public Builder clearEP() {
eP_ = 0;
onChanged();
return this;
}
private int eLen_ ;
/**
* uint32 e_len = 3;
* @return The eLen.
*/
@Override
public int getELen() {
return eLen_;
}
/**
* uint32 e_len = 3;
* @param value The eLen to set.
* @return This builder for chaining.
*/
public Builder setELen(int value) {
eLen_ = value;
onChanged();
return this;
}
/**
* uint32 e_len = 3;
* @return This builder for chaining.
*/
public Builder clearELen() {
eLen_ = 0;
onChanged();
return this;
}
@Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:objattr.DaosEcAttr)
}
// @@protoc_insertion_point(class_scope:objattr.DaosEcAttr)
private static final DaosEcAttr DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new DaosEcAttr();
}
public static DaosEcAttr getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@Override
public DaosEcAttr parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new DaosEcAttr(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@Override
public DaosEcAttr getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}