Class SET.Element

java.lang.Object
org.mozilla.jss.asn1.SET.Element
Enclosing class:
SET

static class SET.Element extends Object
An element of a SET
  • Field Details

    • val

      private ASN1Value val
    • implicitTag

      private Tag implicitTag
  • Constructor Details

    • Element

      public Element(ASN1Value val)
      Makes a new SET element from the given value.
    • Element

      public Element(Tag implicitTag, ASN1Value val)
      Makes a new SET element from the given value with the given implicit tag.
  • Method Details

    • getValue

      public ASN1Value getValue()
      Returns the value of this SET element.
    • getTag

      public Tag getTag()
      Returns the tag that actually shows up in the encoding. If there is an implicit tag, it will be used. Otherwise, it will be the base tag for the value.
    • getImplicitTag

      public Tag getImplicitTag()
      Returns the implicit tag for this value, if there is one. If not, returns null.