Package net.ripe.rpki.commons.util
Enum RepositoryObjectType
- java.lang.Object
-
- java.lang.Enum<RepositoryObjectType>
-
- net.ripe.rpki.commons.util.RepositoryObjectType
-
- All Implemented Interfaces:
Serializable,Comparable<RepositoryObjectType>
public enum RepositoryObjectType extends Enum<RepositoryObjectType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AspaCertificateCrlGbrManifestRoaSignedChecklistTrustAnchorKeyUnknown
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RepositoryObjectTypeparse(String name)See https://www.iana.org/assignments/rpki/rpki.xhtml for the list of registered RPKI file extensionsstatic RepositoryObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RepositoryObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Certificate
public static final RepositoryObjectType Certificate
-
Crl
public static final RepositoryObjectType Crl
-
Aspa
public static final RepositoryObjectType Aspa
-
Gbr
public static final RepositoryObjectType Gbr
-
Manifest
public static final RepositoryObjectType Manifest
-
Roa
public static final RepositoryObjectType Roa
-
SignedChecklist
public static final RepositoryObjectType SignedChecklist
-
TrustAnchorKey
public static final RepositoryObjectType TrustAnchorKey
-
Unknown
public static final RepositoryObjectType Unknown
-
-
Method Detail
-
values
public static RepositoryObjectType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RepositoryObjectType c : RepositoryObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RepositoryObjectType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
parse
public static RepositoryObjectType parse(String name)
See https://www.iana.org/assignments/rpki/rpki.xhtml for the list of registered RPKI file extensions
-
-