implements
// @@protoc_insertion_point(builder_implements:tutorial.SweepLocation)
SweepLocationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return Common.internal_static_tutorial_SweepLocation_descriptor;
}
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return Common.internal_static_tutorial_SweepLocation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
SweepLocation.class, Builder.class);
}
// Construct using com.fdkankan.common.proto.Common.SweepLocation.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getPoseFieldBuilder();
getPuckFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
uuid_ = com.google.protobuf.ByteString.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
if (poseBuilder_ == null) {
pose_ = Affine3f.getDefaultInstance();
} else {
poseBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (puckBuilder_ == null) {
puck_ = Vector3f.getDefaultInstance();
} else {
puckBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
group_ = 0;
bitField0_ = (bitField0_ & ~0x00000008);
subgroup_ = 0;
bitField0_ = (bitField0_ & ~0x00000010);
visibles_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
scores_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
visibles2_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000080);
visibles3_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000100);
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return Common.internal_static_tutorial_SweepLocation_descriptor;
}
public SweepLocation getDefaultInstanceForType() {
return SweepLocation.getDefaultInstance();
}
public SweepLocation build() {
SweepLocation result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public SweepLocation buildPartial() {
SweepLocation result = new SweepLocation(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.uuid_ = uuid_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
if (poseBuilder_ == null) {
result.pose_ = pose_;
} else {
result.pose_ = poseBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
if (puckBuilder_ == null) {
result.puck_ = puck_;
} else {
result.puck_ = puckBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.group_ = group_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.subgroup_ = subgroup_;
if (((bitField0_ & 0x00000020) == 0x00000020)) {
visibles_ = java.util.Collections.unmodifiableList(visibles_);
bitField0_ = (bitField0_ & ~0x00000020);
}
result.visibles_ = visibles_;
if (((bitField0_ & 0x00000040) == 0x00000040)) {
scores_ = java.util.Collections.unmodifiableList(scores_);
bitField0_ = (bitField0_ & ~0x00000040);
}
result.scores_ = scores_;
if (((bitField0_ & 0x00000080) == 0x00000080)) {
visibles2_ = java.util.Collections.unmodifiableList(visibles2_);
bitField0_ = (bitField0_ & ~0x00000080);
}
result.visibles2_ = visibles2_;
if (((bitField0_ & 0x00000100) == 0x00000100)) {
visibles3_ = java.util.Collections.unmodifiableList(visibles3_);
bitField0_ = (bitField0_ & ~0x00000100);
}
result.visibles3_ = visibles3_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof SweepLocation) {
return mergeFrom((SweepLocation)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(SweepLocation other) {
if (other == SweepLocation.getDefaultInstance()) return this;
if (other.hasUuid()) {
setUuid(other.getUuid());
}
if (other.hasPose()) {
mergePose(other.getPose());
}
if (other.hasPuck()) {
mergePuck(other.getPuck());
}
if (other.hasGroup()) {
setGroup(other.getGroup());
}
if (other.hasSubgroup()) {
setSubgroup(other.getSubgroup());
}
if (!other.visibles_.isEmpty()) {
if (visibles_.isEmpty()) {
visibles_ = other.visibles_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureVisiblesIsMutable();
visibles_.addAll(other.visibles_);
}
onChanged();
}
if (!other.scores_.isEmpty()) {
if (scores_.isEmpty()) {
scores_ = other.scores_;
bitField0_ = (bitField0_ & ~0x00000040);
} else {
ensureScoresIsMutable();
scores_.addAll(other.scores_);
}
onChanged();
}
if (!other.visibles2_.isEmpty()) {
if (visibles2_.isEmpty()) {
visibles2_ = other.visibles2_;
bitField0_ = (bitField0_ & ~0x00000080);
} else {
ensureVisibles2IsMutable();
visibles2_.addAll(other.visibles2_);
}
onChanged();
}
if (!other.visibles3_.isEmpty()) {
if (visibles3_.isEmpty()) {
visibles3_ = other.visibles3_;
bitField0_ = (bitField0_ & ~0x00000100);
} else {
ensureVisibles3IsMutable();
visibles3_.addAll(other.visibles3_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
SweepLocation parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (SweepLocation) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.google.protobuf.ByteString uuid_ = com.google.protobuf.ByteString.EMPTY;
/**
* optional bytes uuid = 1;
*
*
* uuid
*
*/
public boolean hasUuid() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional bytes uuid = 1;
*
*
* uuid
*
*/
public com.google.protobuf.ByteString getUuid() {
return uuid_;
}
/**
* optional bytes uuid = 1;
*
*
* uuid
*
*/
public Builder setUuid(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
uuid_ = value;
onChanged();
return this;
}
/**
* optional bytes uuid = 1;
*
*
* uuid
*
*/
public Builder clearUuid() {
bitField0_ = (bitField0_ & ~0x00000001);
uuid_ = getDefaultInstance().getUuid();
onChanged();
return this;
}
private Affine3f pose_ = Affine3f.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
Affine3f, Affine3f.Builder, Affine3fOrBuilder> poseBuilder_;
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public boolean hasPose() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Affine3f getPose() {
if (poseBuilder_ == null) {
return pose_;
} else {
return poseBuilder_.getMessage();
}
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Builder setPose(Affine3f value) {
if (poseBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
pose_ = value;
onChanged();
} else {
poseBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Builder setPose(
Affine3f.Builder builderForValue) {
if (poseBuilder_ == null) {
pose_ = builderForValue.build();
onChanged();
} else {
poseBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Builder mergePose(Affine3f value) {
if (poseBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002) &&
pose_ != Affine3f.getDefaultInstance()) {
pose_ =
Affine3f.newBuilder(pose_).mergeFrom(value).buildPartial();
} else {
pose_ = value;
}
onChanged();
} else {
poseBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
return this;
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Builder clearPose() {
if (poseBuilder_ == null) {
pose_ = Affine3f.getDefaultInstance();
onChanged();
} else {
poseBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Affine3f.Builder getPoseBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getPoseFieldBuilder().getBuilder();
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
public Affine3fOrBuilder getPoseOrBuilder() {
if (poseBuilder_ != null) {
return poseBuilder_.getMessageOrBuilder();
} else {
return pose_;
}
}
/**
* optional .tutorial.Affine3f pose = 2;
*
*
* camera pose (x, y,z) in meter and a quaternion
*
*/
private com.google.protobuf.SingleFieldBuilder<
Affine3f, Affine3f.Builder, Affine3fOrBuilder>
getPoseFieldBuilder() {
if (poseBuilder_ == null) {
poseBuilder_ = new com.google.protobuf.SingleFieldBuilder<
Affine3f, Affine3f.Builder, Affine3fOrBuilder>(
getPose(),
getParentForChildren(),
isClean());
pose_ = null;
}
return poseBuilder_;
}
private Vector3f puck_ = Vector3f.getDefaultInstance();
private com.google.protobuf.SingleFieldBuilder<
Vector3f, Vector3f.Builder, Vector3fOrBuilder> puckBuilder_;
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public boolean hasPuck() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Vector3f getPuck() {
if (puckBuilder_ == null) {
return puck_;
} else {
return puckBuilder_.getMessage();
}
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Builder setPuck(Vector3f value) {
if (puckBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
puck_ = value;
onChanged();
} else {
puckBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Builder setPuck(
Vector3f.Builder builderForValue) {
if (puckBuilder_ == null) {
puck_ = builderForValue.build();
onChanged();
} else {
puckBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Builder mergePuck(Vector3f value) {
if (puckBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004) &&
puck_ != Vector3f.getDefaultInstance()) {
puck_ =
Vector3f.newBuilder(puck_).mergeFrom(value).buildPartial();
} else {
puck_ = value;
}
onChanged();
} else {
puckBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
return this;
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Builder clearPuck() {
if (puckBuilder_ == null) {
puck_ = Vector3f.getDefaultInstance();
onChanged();
} else {
puckBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
return this;
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Vector3f.Builder getPuckBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getPuckFieldBuilder().getBuilder();
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
public Vector3fOrBuilder getPuckOrBuilder() {
if (puckBuilder_ != null) {
return puckBuilder_.getMessageOrBuilder();
} else {
return puck_;
}
}
/**
* optional .tutorial.Vector3f puck = 3;
*
*
* puck location - x any is generally the same as pose, z is the height of the closest floor under the camera
*
*/
private com.google.protobuf.SingleFieldBuilder<
Vector3f, Vector3f.Builder, Vector3fOrBuilder>
getPuckFieldBuilder() {
if (puckBuilder_ == null) {
puckBuilder_ = new com.google.protobuf.SingleFieldBuilder<
Vector3f, Vector3f.Builder, Vector3fOrBuilder>(
getPuck(),
getParentForChildren(),
isClean());
puck_ = null;
}
return puckBuilder_;
}
private int group_ ;
/**
* optional int32 group = 4;
*
*
* floor index
*
*/
public boolean hasGroup() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional int32 group = 4;
*
*
* floor index
*
*/
public int getGroup() {
return group_;
}
/**
* optional int32 group = 4;
*
*
* floor index
*
*/
public Builder setGroup(int value) {
bitField0_ |= 0x00000008;
group_ = value;
onChanged();
return this;
}
/**
* optional int32 group = 4;
*
*
* floor index
*
*/
public Builder clearGroup() {
bitField0_ = (bitField0_ & ~0x00000008);
group_ = 0;
onChanged();
return this;
}
private int subgroup_ ;
/**
* optional int32 subgroup = 5;
*
*
* room index
*
*/
public boolean hasSubgroup() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional int32 subgroup = 5;
*
*
* room index
*
*/
public int getSubgroup() {
return subgroup_;
}
/**
* optional int32 subgroup = 5;
*
*
* room index
*
*/
public Builder setSubgroup(int value) {
bitField0_ |= 0x00000010;
subgroup_ = value;
onChanged();
return this;
}
/**
* optional int32 subgroup = 5;
*
*
* room index
*
*/
public Builder clearSubgroup() {
bitField0_ = (bitField0_ & ~0x00000010);
subgroup_ = 0;
onChanged();
return this;
}
private java.util.List visibles_ = java.util.Collections.emptyList();
private void ensureVisiblesIsMutable() {
if (!((bitField0_ & 0x00000020) == 0x00000020)) {
visibles_ = new java.util.ArrayList(visibles_);
bitField0_ |= 0x00000020;
}
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public java.util.List
getVisiblesList() {
return java.util.Collections.unmodifiableList(visibles_);
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public int getVisiblesCount() {
return visibles_.size();
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public int getVisibles(int index) {
return visibles_.get(index);
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder setVisibles(
int index, int value) {
ensureVisiblesIsMutable();
visibles_.set(index, value);
onChanged();
return this;
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder addVisibles(int value) {
ensureVisiblesIsMutable();
visibles_.add(value);
onChanged();
return this;
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder addAllVisibles(
Iterable extends Integer> values) {
ensureVisiblesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, visibles_);
onChanged();
return this;
}
/**
* repeated int32 visibles = 6;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder clearVisibles() {
visibles_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
return this;
}
private java.util.List scores_ = java.util.Collections.emptyList();
private void ensureScoresIsMutable() {
if (!((bitField0_ & 0x00000040) == 0x00000040)) {
scores_ = new java.util.ArrayList(scores_);
bitField0_ |= 0x00000040;
}
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public java.util.List
getScoresList() {
return java.util.Collections.unmodifiableList(scores_);
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public int getScoresCount() {
return scores_.size();
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public float getScores(int index) {
return scores_.get(index);
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public Builder setScores(
int index, float value) {
ensureScoresIsMutable();
scores_.set(index, value);
onChanged();
return this;
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public Builder addScores(float value) {
ensureScoresIsMutable();
scores_.add(value);
onChanged();
return this;
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public Builder addAllScores(
Iterable extends Float> values) {
ensureScoresIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, scores_);
onChanged();
return this;
}
/**
* repeated float scores = 7;
*
*
* used as part of scoring function for determining which puck to go to next
*
*/
public Builder clearScores() {
scores_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
return this;
}
private java.util.List visibles2_ = java.util.Collections.emptyList();
private void ensureVisibles2IsMutable() {
if (!((bitField0_ & 0x00000080) == 0x00000080)) {
visibles2_ = new java.util.ArrayList(visibles2_);
bitField0_ |= 0x00000080;
}
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public java.util.List
getVisibles2List() {
return java.util.Collections.unmodifiableList(visibles2_);
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public int getVisibles2Count() {
return visibles2_.size();
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public int getVisibles2(int index) {
return visibles2_.get(index);
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder setVisibles2(
int index, int value) {
ensureVisibles2IsMutable();
visibles2_.set(index, value);
onChanged();
return this;
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder addVisibles2(int value) {
ensureVisibles2IsMutable();
visibles2_.add(value);
onChanged();
return this;
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder addAllVisibles2(
Iterable extends Integer> values) {
ensureVisibles2IsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, visibles2_);
onChanged();
return this;
}
/**
* repeated int32 visibles2 = 8;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder clearVisibles2() {
visibles2_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000080);
onChanged();
return this;
}
private java.util.List visibles3_ = java.util.Collections.emptyList();
private void ensureVisibles3IsMutable() {
if (!((bitField0_ & 0x00000100) == 0x00000100)) {
visibles3_ = new java.util.ArrayList(visibles3_);
bitField0_ |= 0x00000100;
}
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public java.util.List
getVisibles3List() {
return java.util.Collections.unmodifiableList(visibles3_);
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public int getVisibles3Count() {
return visibles3_.size();
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public int getVisibles3(int index) {
return visibles3_.get(index);
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder setVisibles3(
int index, int value) {
ensureVisibles3IsMutable();
visibles3_.set(index, value);
onChanged();
return this;
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder addVisibles3(int value) {
ensureVisibles3IsMutable();
visibles3_.add(value);
onChanged();
return this;
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder addAllVisibles3(
Iterable extends Integer> values) {
ensureVisibles3IsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, visibles3_);
onChanged();
return this;
}
/**
* repeated int32 visibles3 = 9;
*
*
* list of indices to all pucks visible from this puck
*
*/
public Builder clearVisibles3() {
visibles3_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000100);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:tutorial.SweepLocation)
}
static {
defaultInstance = new SweepLocation(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:tutorial.SweepLocation)
}
public interface NavigationInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:tutorial.NavigationInfo)
com.google.protobuf.MessageOrBuilder {
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
java.util.List
getSweepLocationsList();
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
SweepLocation getSweepLocations(int index);
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
int getSweepLocationsCount();
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
// java.util.List extends SweepLocationOrBuilder>
// getSweepLocationsOrBuilderList();
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
SweepLocationOrBuilder getSweepLocationsOrBuilder(
int index);
}
/**
* Protobuf type {@code tutorial.NavigationInfo}
*
*
* All pucks in a model. Pucks are stored in scanning order.
*
*/
public static final class NavigationInfo extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:tutorial.NavigationInfo)
NavigationInfoOrBuilder {
// Use NavigationInfo.newBuilder() to construct.
private NavigationInfo(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private NavigationInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final NavigationInfo defaultInstance;
public static NavigationInfo getDefaultInstance() {
return defaultInstance;
}
public NavigationInfo getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private NavigationInfo(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
int mutable_bitField0_ = 0;
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 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
sweepLocations_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
sweepLocations_.add(input.readMessage(SweepLocation.PARSER, extensionRegistry));
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.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
sweepLocations_ = java.util.Collections.unmodifiableList(sweepLocations_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return Common.internal_static_tutorial_NavigationInfo_descriptor;
}
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return Common.internal_static_tutorial_NavigationInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
NavigationInfo.class, Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public NavigationInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NavigationInfo(input, extensionRegistry);
}
};
@Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public static final int SWEEPLOCATIONS_FIELD_NUMBER = 1;
private java.util.List sweepLocations_;
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public java.util.List getSweepLocationsList() {
return sweepLocations_;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
// public java.util.List extends SweepLocationOrBuilder>
// getSweepLocationsOrBuilderList() {
// return sweepLocations_;
// }
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public int getSweepLocationsCount() {
return sweepLocations_.size();
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocation getSweepLocations(int index) {
return sweepLocations_.get(index);
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocationOrBuilder getSweepLocationsOrBuilder(
int index) {
return sweepLocations_.get(index);
}
private void initFields() {
sweepLocations_ = java.util.Collections.emptyList();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
for (int i = 0; i < sweepLocations_.size(); i++) {
output.writeMessage(1, sweepLocations_.get(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < sweepLocations_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, sweepLocations_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@Override
protected Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static NavigationInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static NavigationInfo parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static NavigationInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static NavigationInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static NavigationInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static NavigationInfo parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static NavigationInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static NavigationInfo parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static NavigationInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static NavigationInfo parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(NavigationInfo prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code tutorial.NavigationInfo}
*
*
* All pucks in a model. Pucks are stored in scanning order.
*
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:tutorial.NavigationInfo)
NavigationInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return Common.internal_static_tutorial_NavigationInfo_descriptor;
}
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return Common.internal_static_tutorial_NavigationInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
NavigationInfo.class, Builder.class);
}
// Construct using com.fdkankan.common.proto.Common.NavigationInfo.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
getSweepLocationsFieldBuilder();
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
if (sweepLocationsBuilder_ == null) {
sweepLocations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
sweepLocationsBuilder_.clear();
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return Common.internal_static_tutorial_NavigationInfo_descriptor;
}
public NavigationInfo getDefaultInstanceForType() {
return NavigationInfo.getDefaultInstance();
}
public NavigationInfo build() {
NavigationInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public NavigationInfo buildPartial() {
NavigationInfo result = new NavigationInfo(this);
int from_bitField0_ = bitField0_;
if (sweepLocationsBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
sweepLocations_ = java.util.Collections.unmodifiableList(sweepLocations_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.sweepLocations_ = sweepLocations_;
} else {
result.sweepLocations_ = sweepLocationsBuilder_.build();
}
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof NavigationInfo) {
return mergeFrom((NavigationInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(NavigationInfo other) {
if (other == NavigationInfo.getDefaultInstance()) return this;
if (sweepLocationsBuilder_ == null) {
if (!other.sweepLocations_.isEmpty()) {
if (sweepLocations_.isEmpty()) {
sweepLocations_ = other.sweepLocations_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureSweepLocationsIsMutable();
sweepLocations_.addAll(other.sweepLocations_);
}
onChanged();
}
} else {
if (!other.sweepLocations_.isEmpty()) {
if (sweepLocationsBuilder_.isEmpty()) {
sweepLocationsBuilder_.dispose();
sweepLocationsBuilder_ = null;
sweepLocations_ = other.sweepLocations_;
bitField0_ = (bitField0_ & ~0x00000001);
sweepLocationsBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
getSweepLocationsFieldBuilder() : null;
} else {
sweepLocationsBuilder_.addAllMessages(other.sweepLocations_);
}
}
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
NavigationInfo parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (NavigationInfo) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List sweepLocations_ =
java.util.Collections.emptyList();
private void ensureSweepLocationsIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
sweepLocations_ = new java.util.ArrayList(sweepLocations_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilder<
SweepLocation, SweepLocation.Builder, SweepLocationOrBuilder> sweepLocationsBuilder_;
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public java.util.List getSweepLocationsList() {
if (sweepLocationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(sweepLocations_);
} else {
return sweepLocationsBuilder_.getMessageList();
}
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public int getSweepLocationsCount() {
if (sweepLocationsBuilder_ == null) {
return sweepLocations_.size();
} else {
return sweepLocationsBuilder_.getCount();
}
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocation getSweepLocations(int index) {
if (sweepLocationsBuilder_ == null) {
return sweepLocations_.get(index);
} else {
return sweepLocationsBuilder_.getMessage(index);
}
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder setSweepLocations(
int index, SweepLocation value) {
if (sweepLocationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureSweepLocationsIsMutable();
sweepLocations_.set(index, value);
onChanged();
} else {
sweepLocationsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder setSweepLocations(
int index, SweepLocation.Builder builderForValue) {
if (sweepLocationsBuilder_ == null) {
ensureSweepLocationsIsMutable();
sweepLocations_.set(index, builderForValue.build());
onChanged();
} else {
sweepLocationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder addSweepLocations(SweepLocation value) {
if (sweepLocationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureSweepLocationsIsMutable();
sweepLocations_.add(value);
onChanged();
} else {
sweepLocationsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder addSweepLocations(
int index, SweepLocation value) {
if (sweepLocationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureSweepLocationsIsMutable();
sweepLocations_.add(index, value);
onChanged();
} else {
sweepLocationsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder addSweepLocations(
SweepLocation.Builder builderForValue) {
if (sweepLocationsBuilder_ == null) {
ensureSweepLocationsIsMutable();
sweepLocations_.add(builderForValue.build());
onChanged();
} else {
sweepLocationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder addSweepLocations(
int index, SweepLocation.Builder builderForValue) {
if (sweepLocationsBuilder_ == null) {
ensureSweepLocationsIsMutable();
sweepLocations_.add(index, builderForValue.build());
onChanged();
} else {
sweepLocationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder addAllSweepLocations(
Iterable extends SweepLocation> values) {
if (sweepLocationsBuilder_ == null) {
ensureSweepLocationsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, sweepLocations_);
onChanged();
} else {
sweepLocationsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder clearSweepLocations() {
if (sweepLocationsBuilder_ == null) {
sweepLocations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
sweepLocationsBuilder_.clear();
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public Builder removeSweepLocations(int index) {
if (sweepLocationsBuilder_ == null) {
ensureSweepLocationsIsMutable();
sweepLocations_.remove(index);
onChanged();
} else {
sweepLocationsBuilder_.remove(index);
}
return this;
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocation.Builder getSweepLocationsBuilder(
int index) {
return getSweepLocationsFieldBuilder().getBuilder(index);
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocationOrBuilder getSweepLocationsOrBuilder(
int index) {
if (sweepLocationsBuilder_ == null) {
return sweepLocations_.get(index); } else {
return sweepLocationsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
// public java.util.List extends SweepLocationOrBuilder>
// getSweepLocationsOrBuilderList() {
// if (sweepLocationsBuilder_ != null) {
// return sweepLocationsBuilder_.getMessageOrBuilderList();
// } else {
// return java.util.Collections.unmodifiableList(sweepLocations_);
// }
// }
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocation.Builder addSweepLocationsBuilder() {
return getSweepLocationsFieldBuilder().addBuilder(
SweepLocation.getDefaultInstance());
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public SweepLocation.Builder addSweepLocationsBuilder(
int index) {
return getSweepLocationsFieldBuilder().addBuilder(
index, SweepLocation.getDefaultInstance());
}
/**
* repeated .tutorial.SweepLocation sweepLocations = 1;
*/
public java.util.List
getSweepLocationsBuilderList() {
return getSweepLocationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilder<
SweepLocation, SweepLocation.Builder, SweepLocationOrBuilder>
getSweepLocationsFieldBuilder() {
if (sweepLocationsBuilder_ == null) {
sweepLocationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
SweepLocation, SweepLocation.Builder, SweepLocationOrBuilder>(
sweepLocations_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
sweepLocations_ = null;
}
return sweepLocationsBuilder_;
}
// @@protoc_insertion_point(builder_scope:tutorial.NavigationInfo)
}
static {
defaultInstance = new NavigationInfo(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:tutorial.NavigationInfo)
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_tutorial_Affine3f_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_tutorial_Affine3f_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_tutorial_Quaternionf_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_tutorial_Quaternionf_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_tutorial_Vector3f_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_tutorial_Vector3f_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_tutorial_SweepLocation_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_tutorial_SweepLocation_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_tutorial_NavigationInfo_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_tutorial_NavigationInfo_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
String[] descriptorData = {
"\n\014Common.proto\022\010tutorial\"\\\n\010Affine3f\022\'\n\010" +
"rotation\030\001 \001(\0132\025.tutorial.Quaternionf\022\'\n" +
"\013translation\030\002 \001(\0132\022.tutorial.Vector3f\"9" +
"\n\013Quaternionf\022\t\n\001w\030\001 \001(\002\022\t\n\001x\030\002 \001(\002\022\t\n\001y" +
"\030\003 \001(\002\022\t\n\001z\030\004 \001(\002\"+\n\010Vector3f\022\t\n\001x\030\001 \001(\002" +
"\022\t\n\001y\030\002 \001(\002\022\t\n\001z\030\003 \001(\002\"\312\001\n\rSweepLocation" +
"\022\014\n\004uuid\030\001 \001(\014\022 \n\004pose\030\002 \001(\0132\022.tutorial." +
"Affine3f\022 \n\004puck\030\003 \001(\0132\022.tutorial.Vector" +
"3f\022\r\n\005group\030\004 \001(\005\022\020\n\010subgroup\030\005 \001(\005\022\020\n\010v" +
"isibles\030\006 \003(\005\022\016\n\006scores\030\007 \003(\002\022\021\n\tvisible",
"s2\030\010 \003(\005\022\021\n\tvisibles3\030\t \003(\005\"A\n\016Navigatio" +
"nInfo\022/\n\016sweepLocations\030\001 \003(\0132\027.tutorial" +
".SweepLocationB\035\n\023com.fdage.web.protoB\006c" +
"ommon"
};
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() {
public com.google.protobuf.ExtensionRegistry assignDescriptors(
com.google.protobuf.Descriptors.FileDescriptor root) {
descriptor = root;
return null;
}
};
com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
}, assigner);
internal_static_tutorial_Affine3f_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_tutorial_Affine3f_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_tutorial_Affine3f_descriptor,
new String[] { "Rotation", "Translation", });
internal_static_tutorial_Quaternionf_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_tutorial_Quaternionf_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_tutorial_Quaternionf_descriptor,
new String[] { "W", "X", "Y", "Z", });
internal_static_tutorial_Vector3f_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_tutorial_Vector3f_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_tutorial_Vector3f_descriptor,
new String[] { "X", "Y", "Z", });
internal_static_tutorial_SweepLocation_descriptor =
getDescriptor().getMessageTypes().get(3);
internal_static_tutorial_SweepLocation_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_tutorial_SweepLocation_descriptor,
new String[] { "Uuid", "Pose", "Puck", "Group", "Subgroup", "Visibles", "Scores", "Visibles2", "Visibles3", });
internal_static_tutorial_NavigationInfo_descriptor =
getDescriptor().getMessageTypes().get(4);
internal_static_tutorial_NavigationInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_tutorial_NavigationInfo_descriptor,
new String[] { "SweepLocations", });
}
// @@protoc_insertion_point(outer_class_scope)
}