Package google.registry.rde
Enum RdeResourceType
- java.lang.Object
-
- java.lang.Enum<RdeResourceType>
-
- google.registry.rde.RdeResourceType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RdeResourceType>
public enum RdeResourceType extends java.lang.Enum<RdeResourceType>
Types of objects that get embedded in an escrow deposit.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.collect.ImmutableSet<RdeMode>
getModes()
Returns set indicating if resource is stored in BRDA thin deposits.java.lang.String
getUri()
Returns RDE XML schema URI specifying resource.static com.google.common.collect.ImmutableSortedSet<java.lang.String>
getUris(RdeMode mode)
Returns set of resource type URIs included in a depositmode
.static RdeResourceType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RdeResourceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTACT
public static final RdeResourceType CONTACT
-
DOMAIN
public static final RdeResourceType DOMAIN
-
HOST
public static final RdeResourceType HOST
-
REGISTRAR
public static final RdeResourceType REGISTRAR
-
IDN
public static final RdeResourceType IDN
-
HEADER
public static final RdeResourceType HEADER
-
-
Method Detail
-
values
public static RdeResourceType[] 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 (RdeResourceType c : RdeResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RdeResourceType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getUri
public java.lang.String getUri()
Returns RDE XML schema URI specifying resource.
-
getModes
public com.google.common.collect.ImmutableSet<RdeMode> getModes()
Returns set indicating if resource is stored in BRDA thin deposits.
-
getUris
public static com.google.common.collect.ImmutableSortedSet<java.lang.String> getUris(RdeMode mode)
Returns set of resource type URIs included in a depositmode
.
-
-