CertType.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 package com.orionsec.jpkif;
00010
00011 public final class CertType {
00012 public final static CertType USER = new CertType("USER");
00013 public final static CertType CA = new CertType("CA");
00014 public final static CertType FORWARD = new CertType("FORWARD");
00015 public final static CertType REVERSE = new CertType("REVERSE");
00016
00017 public final int swigValue() {
00018 return swigValue;
00019 }
00020
00021 public String toString() {
00022 return swigName;
00023 }
00024
00025 public static CertType swigToEnum(int swigValue) {
00026 if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
00027 return swigValues[swigValue];
00028 for (int i = 0; i < swigValues.length; i++)
00029 if (swigValues[i].swigValue == swigValue)
00030 return swigValues[i];
00031 throw new IllegalArgumentException("No enum " + CertType.class + " with value " + swigValue);
00032 }
00033
00034 private CertType(String swigName) {
00035 this.swigName = swigName;
00036 this.swigValue = swigNext++;
00037 }
00038
00039 private CertType(String swigName, int swigValue) {
00040 this.swigName = swigName;
00041 this.swigValue = swigValue;
00042 swigNext = swigValue+1;
00043 }
00044
00045 private CertType(String swigName, CertType swigEnum) {
00046 this.swigName = swigName;
00047 this.swigValue = swigEnum.swigValue;
00048 swigNext = this.swigValue+1;
00049 }
00050
00051 private static CertType[] swigValues = { USER, CA, FORWARD, REVERSE };
00052 private static int swigNext = 0;
00053 private final int swigValue;
00054 private final String swigName;
00055 }
00056