DELL
2024-01-13 4a6db1d471d81415d0c407cb1d91ed926593b4e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
 * This class file was automatically generated by jASN1 v1.9.0 (http://www.openmuc.org)
 */
 
package org.openmuc.openiec61850.internal.mms.asn1;
 
import java.math.BigInteger;
 
import org.openmuc.jasn1.ber.types.BerInteger;
 
public class Unsigned32 extends BerInteger {
 
    private static final long serialVersionUID = 1L;
 
    public Unsigned32() {
    }
 
    public Unsigned32(byte[] code) {
        super(code);
    }
 
    public Unsigned32(BigInteger value) {
        super(value);
    }
 
    public Unsigned32(long value) {
        super(value);
    }
 
}