blob: 3ce2cef9c0dbd9352d44f1fcfb36f8601f4fe110 [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.ver2_ulp_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 CellGlobalIdEUTRA extends Asn1Sequence {
//
private static final Asn1Tag TAG_CellGlobalIdEUTRA
= Asn1Tag.fromClassAndNumber(-1, -1);
public CellGlobalIdEUTRA() {
super();
}
@Override
@Nullable
protected Asn1Tag getTag() {
return TAG_CellGlobalIdEUTRA;
}
@Override
protected boolean isTagImplicit() {
return true;
}
public static Collection<Asn1Tag> getPossibleFirstTags() {
if (TAG_CellGlobalIdEUTRA != null) {
return ImmutableList.of(TAG_CellGlobalIdEUTRA);
} else {
return Asn1Sequence.getPossibleFirstTags();
}
}
/**
* Creates a new CellGlobalIdEUTRA from encoded stream.
*/
public static CellGlobalIdEUTRA fromPerUnaligned(byte[] encodedBytes) {
CellGlobalIdEUTRA result = new CellGlobalIdEUTRA();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
}
/**
* Creates a new CellGlobalIdEUTRA from encoded stream.
*/
public static CellGlobalIdEUTRA fromPerAligned(byte[] encodedBytes) {
CellGlobalIdEUTRA result = new CellGlobalIdEUTRA();
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 PLMN_Identity plmn_Identity_;
public PLMN_Identity getPlmn_Identity() {
return plmn_Identity_;
}
/**
* @throws ClassCastException if value is not a PLMN_Identity
*/
public void setPlmn_Identity(Asn1Object value) {
this.plmn_Identity_ = (PLMN_Identity) value;
}
public PLMN_Identity setPlmn_IdentityToNewInstance() {
plmn_Identity_ = new PLMN_Identity();
return plmn_Identity_;
}
private CellIdentity cellIdentity_;
public CellIdentity getCellIdentity() {
return cellIdentity_;
}
/**
* @throws ClassCastException if value is not a CellIdentity
*/
public void setCellIdentity(Asn1Object value) {
this.cellIdentity_ = (CellIdentity) value;
}
public CellIdentity setCellIdentityToNewInstance() {
cellIdentity_ = new CellIdentity();
return cellIdentity_;
}
@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 getPlmn_Identity() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getPlmn_Identity();
}
@Override public void setToNewInstance() {
setPlmn_IdentityToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? PLMN_Identity.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "plmn_Identity : "
+ getPlmn_Identity().toIndentedString(indent);
}
});
builder.add(new SequenceComponent() {
Asn1Tag tag = Asn1Tag.fromClassAndNumber(2, 1);
@Override public boolean isExplicitlySet() {
return getCellIdentity() != null;
}
@Override public boolean hasDefaultValue() {
return false;
}
@Override public boolean isOptional() {
return false;
}
@Override public Asn1Object getComponentValue() {
return getCellIdentity();
}
@Override public void setToNewInstance() {
setCellIdentityToNewInstance();
}
@Override public Collection<Asn1Tag> getPossibleFirstTags() {
return tag == null ? CellIdentity.getPossibleFirstTags() : ImmutableList.of(tag);
}
@Override
public Asn1Tag getTag() {
return tag;
}
@Override
public boolean isImplicitTagging() {
return true;
}
@Override public String toIndentedString(String indent) {
return "cellIdentity : "
+ getCellIdentity().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("CellGlobalIdEUTRA = {\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();
}
}