com.ericsson.mts.nas.informationelement.field.AbstractTranslatorField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mts-nas Show documentation
Show all versions of mts-nas Show documentation
A library to encode and decode NAS protocol data, from and to other formats, like XML
package com.ericsson.mts.nas.informationelement.field;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.google.common.collect.HashBiMap;
import java.util.List;
import java.util.Map;
public abstract class AbstractTranslatorField extends AbstractField {
public Integer length;
public Map namedValue;
@JsonIgnore
public HashBiMap namedValueMap = HashBiMap.create(1);
public Integer nBitLength = 8;
public List pdu;
}