blob: 7134486f8640c7c3fe20cff1ae079e276e551c12 [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.Asn1Integer;
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 DGANSSExtensionSgnElement extends Asn1Sequence {
//
private static final Asn1Tag TAG_DGANSSExtensionSgnElement
= Asn1Tag.fromClassAndNumber(-1, -1);
public DGANSSExtensionSgnElement() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_DGANSSExtensionSgnElement;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_DGANSSExtensionSgnElement != null) {
return ImmutableList.of(TAG_DGANSSExtensionSgnElement);
} else {
return Asn1Sequence.getPossibleFirstTags();
}
}
/**
* Creates a new DGANSSExtensionSgnElement from encoded stream.
*/
public static DGANSSExtensionSgnElement fromPerUnaligned(byte[] encodedBytes) {
DGANSSExtensionSgnElement result = new DGANSSExtensionSgnElement();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new DGANSSExtensionSgnElement from encoded stream.
*/
public static DGANSSExtensionSgnElement fromPerAligned(byte[] encodedBytes) {
DGANSSExtensionSgnElement result = new DGANSSExtensionSgnElement();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@Override protected boolean isExtensible() {
return true;
}
@Override public boolean containsExtensionValues() {
for (SequenceComponent extensionComponent : getExtensionComponents()) {
if (extensionComponent.isExplicitlySet()) return true;
}
return false;
}
private SVID svID_;
public SVID getSvID() {
return svID_;
}
/**
* @throws ClassCastException if value is not a SVID
*/
public void setSvID(Asn1Object value) {
this.svID_ = (SVID) value;
}
public SVID setSvIDToNewInstance() {
svID_ = new SVID();
return svID_;
}
private DGANSSExtensionSgnElement.udreGrowthRateType udreGrowthRate_;
public DGANSSExtensionSgnElement.udreGrowthRateType getUdreGrowthRate() {
return udreGrowthRate_;
}
/**
* @throws ClassCastException if value is not a DGANSSExtensionSgnElement.udreGrowthRateType
*/
public void setUdreGrowthRate(Asn1Object value) {
this.udreGrowthRate_ = (DGANSSExtensionSgnElement.udreGrowthRateType) value;
}
public DGANSSExtensionSgnElement.udreGrowthRateType setUdreGrowthRateToNewInstance() {
udreGrowthRate_ = new DGANSSExtensionSgnElement.udreGrowthRateType();
return udreGrowthRate_;
}
private DGANSSExtensionSgnElement.udreValidityTimeType udreValidityTime_;
public DGANSSExtensionSgnElement.udreValidityTimeType getUdreValidityTime() {
return udreValidityTime_;
}
/**
* @throws ClassCastException if value is not a DGANSSExtensionSgnElement.udreValidityTimeType
*/
public void setUdreValidityTime(Asn1Object value) {
this.udreValidityTime_ = (DGANSSExtensionSgnElement.udreValidityTimeType) value;
}
public DGANSSExtensionSgnElement.udreValidityTimeType setUdreValidityTimeToNewInstance() {
udreValidityTime_ = new DGANSSExtensionSgnElement.udreValidityTimeType();
return udreValidityTime_;
}
@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 getSvID() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getSvID();
}
@Override public void setToNewInstance() {
setSvIDToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? SVID.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "svID : "
+ getSvID().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 1);
@Override public boolean isExplicitlySet() {
return getUdreGrowthRate() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getUdreGrowthRate();
}
@Override public void setToNewInstance() {
setUdreGrowthRateToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? DGANSSExtensionSgnElement.udreGrowthRateType.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "udreGrowthRate : "
+ getUdreGrowthRate().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 2);
@Override public boolean isExplicitlySet() {
return getUdreValidityTime() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getUdreValidityTime();
}
@Override public void setToNewInstance() {
setUdreValidityTimeToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? DGANSSExtensionSgnElement.udreValidityTimeType.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "udreValidityTime : "
+ getUdreValidityTime().toIndentedString(indent);
}
});
return builder.build();
}
@Override public Iterable<? extends SequenceComponent>
getExtensionComponents() {
ImmutableList.Builder<SequenceComponent> builder = ImmutableList.builder();
return builder.build();
}
/*
*/
//
/**
*/
public static class udreGrowthRateType extends Asn1Integer {
//
private static final Asn1Tag TAG_udreGrowthRateType
= Asn1Tag.fromClassAndNumber(-1, -1);
public udreGrowthRateType() {
super();
setValueRange("0", "7");
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_udreGrowthRateType;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_udreGrowthRateType != null) {
return ImmutableList.of(TAG_udreGrowthRateType);
} else {
return Asn1Integer.getPossibleFirstTags();
}
}
/**
* Creates a new udreGrowthRateType from encoded stream.
*/
public static udreGrowthRateType fromPerUnaligned(byte[] encodedBytes) {
udreGrowthRateType result = new udreGrowthRateType();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new udreGrowthRateType from encoded stream.
*/
public static udreGrowthRateType fromPerAligned(byte[] encodedBytes) {
udreGrowthRateType result = new udreGrowthRateType();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@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) {
return "udreGrowthRateType = " + getInteger() + ";\n";
}
}
/*
*/
//
/**
*/
public static class udreValidityTimeType extends Asn1Integer {
//
private static final Asn1Tag TAG_udreValidityTimeType
= Asn1Tag.fromClassAndNumber(-1, -1);
public udreValidityTimeType() {
super();
setValueRange("0", "7");
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_udreValidityTimeType;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_udreValidityTimeType != null) {
return ImmutableList.of(TAG_udreValidityTimeType);
} else {
return Asn1Integer.getPossibleFirstTags();
}
}
/**
* Creates a new udreValidityTimeType from encoded stream.
*/
public static udreValidityTimeType fromPerUnaligned(byte[] encodedBytes) {
udreValidityTimeType result = new udreValidityTimeType();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new udreValidityTimeType from encoded stream.
*/
public static udreValidityTimeType fromPerAligned(byte[] encodedBytes) {
udreValidityTimeType result = new udreValidityTimeType();
result.decodePerAligned(new BitStreamReader(encodedBytes));
return result;
}
@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) {
return "udreValidityTimeType = " + getInteger() + ";\n";
}
}
@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("DGANSSExtensionSgnElement = {\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();
}
}