blob: b43a2062051dc6208860635c91f3d1a0a3663336 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.location.cts.asn1.supl2.rrlp_components;
/*
*/
//
//
import android.location.cts.asn1.base.Asn1Null;
import android.location.cts.asn1.base.Asn1Object;
import android.location.cts.asn1.base.Asn1Sequence;
import android.location.cts.asn1.base.Asn1Tag;
import android.location.cts.asn1.base.BitStream;
import android.location.cts.asn1.base.BitStreamReader;
import android.location.cts.asn1.base.SequenceComponent;
import com.google.common.collect.ImmutableList;
import java.util.Collection;
import javax.annotation.Nullable;
/**
*/
public class OTD_MeasurementWithID extends Asn1Sequence {
//
private static final Asn1Tag TAG_OTD_MeasurementWithID
= Asn1Tag.fromClassAndNumber(-1, -1);
public OTD_MeasurementWithID() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_OTD_MeasurementWithID;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_OTD_MeasurementWithID != null) {
return ImmutableList.of(TAG_OTD_MeasurementWithID);
} else {
return Asn1Sequence.getPossibleFirstTags();
}
}
/**
* Creates a new OTD_MeasurementWithID from encoded stream.
*/
public static OTD_MeasurementWithID fromPerUnaligned(byte[] encodedBytes) {
OTD_MeasurementWithID result = new OTD_MeasurementWithID();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new OTD_MeasurementWithID from encoded stream.
*/
public static OTD_MeasurementWithID fromPerAligned(byte[] encodedBytes) {
OTD_MeasurementWithID result = new OTD_MeasurementWithID();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@Override protected boolean isExtensible() {
return false;
}
@Override public boolean containsExtensionValues() {
for (SequenceComponent extensionComponent : getExtensionComponents()) {
if (extensionComponent.isExplicitlySet()) return true;
}
return false;
}
private NeighborIdentity neighborIdentity_;
public NeighborIdentity getNeighborIdentity() {
return neighborIdentity_;
}
/**
* @throws ClassCastException if value is not a NeighborIdentity
*/
public void setNeighborIdentity(Asn1Object value) {
this.neighborIdentity_ = (NeighborIdentity) value;
}
public NeighborIdentity setNeighborIdentityToNewInstance() {
neighborIdentity_ = new NeighborIdentity();
return neighborIdentity_;
}
private ModuloTimeSlot nborTimeSlot_;
public ModuloTimeSlot getNborTimeSlot() {
return nborTimeSlot_;
}
/**
* @throws ClassCastException if value is not a ModuloTimeSlot
*/
public void setNborTimeSlot(Asn1Object value) {
this.nborTimeSlot_ = (ModuloTimeSlot) value;
}
public ModuloTimeSlot setNborTimeSlotToNewInstance() {
nborTimeSlot_ = new ModuloTimeSlot();
return nborTimeSlot_;
}
private EOTDQuality eotdQuality_;
public EOTDQuality getEotdQuality() {
return eotdQuality_;
}
/**
* @throws ClassCastException if value is not a EOTDQuality
*/
public void setEotdQuality(Asn1Object value) {
this.eotdQuality_ = (EOTDQuality) value;
}
public EOTDQuality setEotdQualityToNewInstance() {
eotdQuality_ = new EOTDQuality();
return eotdQuality_;
}
private OTDValue otdValue_;
public OTDValue getOtdValue() {
return otdValue_;
}
/**
* @throws ClassCastException if value is not a OTDValue
*/
public void setOtdValue(Asn1Object value) {
this.otdValue_ = (OTDValue) value;
}
public OTDValue setOtdValueToNewInstance() {
otdValue_ = new OTDValue();
return otdValue_;
}
@Override public Iterable<? extends SequenceComponent> getComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 0);
@Override public boolean isExplicitlySet() {
return getNeighborIdentity() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getNeighborIdentity();
}
@Override public void setToNewInstance() {
setNeighborIdentityToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? NeighborIdentity.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "neighborIdentity : "
+ getNeighborIdentity().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 1);
@Override public boolean isExplicitlySet() {
return getNborTimeSlot() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getNborTimeSlot();
}
@Override public void setToNewInstance() {
setNborTimeSlotToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? ModuloTimeSlot.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "nborTimeSlot : "
+ getNborTimeSlot().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 2);
@Override public boolean isExplicitlySet() {
return getEotdQuality() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getEotdQuality();
}
@Override public void setToNewInstance() {
setEotdQualityToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? EOTDQuality.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "eotdQuality : "
+ getEotdQuality().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 3);
@Override public boolean isExplicitlySet() {
return getOtdValue() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getOtdValue();
}
@Override public void setToNewInstance() {
setOtdValueToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? OTDValue.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "otdValue : "
+ getOtdValue().toIndentedString(indent);
}
});
return builder.build();
}
@Override public Iterable<? extends SequenceComponent>
getExtensionComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
return builder.build();
}
@Override public Iterable<BitStream> encodePerUnaligned() {
return super.encodePerUnaligned();
}
@Override public Iterable<BitStream> encodePerAligned() {
return super.encodePerAligned();
}
@Override public void decodePerUnaligned(BitStreamReader reader) {
super.decodePerUnaligned(reader);
}
@Override public void decodePerAligned(BitStreamReader reader) {
super.decodePerAligned(reader);
}
@Override public String toString() {
return toIndentedString("");
}
public String toIndentedString(String indent) {
StringBuilder builder = new StringBuilder();
builder.append("OTD_MeasurementWithID = {\n");
final String internalIndent = indent + " ";
for (SequenceComponent component : getComponents()) {
if (component.isExplicitlySet()) {
builder.append(internalIndent)
.append(component.toIndentedString(internalIndent));
}
}
if (isExtensible()) {
builder.append(internalIndent).append("...\n");
for (SequenceComponent component : getExtensionComponents()) {
if (component.isExplicitlySet()) {
builder.append(internalIndent)
.append(component.toIndentedString(internalIndent));
}
}
}
builder.append(indent).append("};\n");
return builder.toString();
}
}