Package com.linkedin.venice.router.api
Enum RouterResourceType
- java.lang.Object
-
- java.lang.Enum<RouterResourceType>
-
- com.linkedin.venice.router.api.RouterResourceType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RouterResourceType>
public enum RouterResourceType extends java.lang.Enum<RouterResourceType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RouterResourceType
getTypeResourceType(java.lang.String typeName)
java.lang.String
toString()
static RouterResourceType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RouterResourceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE_LEADER_CONTROLLER
public static final RouterResourceType TYPE_LEADER_CONTROLLER
-
TYPE_LEADER_CONTROLLER_LEGACY
@Deprecated public static final RouterResourceType TYPE_LEADER_CONTROLLER_LEGACY
Deprecated.
-
TYPE_KEY_SCHEMA
public static final RouterResourceType TYPE_KEY_SCHEMA
-
TYPE_VALUE_SCHEMA
public static final RouterResourceType TYPE_VALUE_SCHEMA
-
TYPE_LATEST_VALUE_SCHEMA
public static final RouterResourceType TYPE_LATEST_VALUE_SCHEMA
-
TYPE_GET_UPDATE_SCHEMA
public static final RouterResourceType TYPE_GET_UPDATE_SCHEMA
-
TYPE_ALL_VALUE_SCHEMA_IDS
public static final RouterResourceType TYPE_ALL_VALUE_SCHEMA_IDS
-
TYPE_CLUSTER_DISCOVERY
public static final RouterResourceType TYPE_CLUSTER_DISCOVERY
-
TYPE_REQUEST_TOPIC
public static final RouterResourceType TYPE_REQUEST_TOPIC
-
TYPE_STREAM_HYBRID_STORE_QUOTA
public static final RouterResourceType TYPE_STREAM_HYBRID_STORE_QUOTA
-
TYPE_STREAM_REPROCESSING_HYBRID_STORE_QUOTA
public static final RouterResourceType TYPE_STREAM_REPROCESSING_HYBRID_STORE_QUOTA
-
TYPE_STORE_STATE
public static final RouterResourceType TYPE_STORE_STATE
-
TYPE_PUSH_STATUS
public static final RouterResourceType TYPE_PUSH_STATUS
-
TYPE_STORAGE
public static final RouterResourceType TYPE_STORAGE
-
TYPE_COMPUTE
public static final RouterResourceType TYPE_COMPUTE
-
TYPE_ADMIN
public static final RouterResourceType TYPE_ADMIN
-
TYPE_RESOURCE_STATE
public static final RouterResourceType TYPE_RESOURCE_STATE
-
TYPE_CURRENT_VERSION
public static final RouterResourceType TYPE_CURRENT_VERSION
-
TYPE_BLOB_DISCOVERY
public static final RouterResourceType TYPE_BLOB_DISCOVERY
-
TYPE_INVALID
public static final RouterResourceType TYPE_INVALID
-
-
Method Detail
-
values
public static RouterResourceType[] 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 (RouterResourceType c : RouterResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RouterResourceType 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
-
getTypeResourceType
public static RouterResourceType getTypeResourceType(java.lang.String typeName)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<RouterResourceType>
-
-