Package com.linkedin.venice.meta
Enum Class VeniceUserStoreType
- All Implemented Interfaces:
Serializable
,Comparable<VeniceUserStoreType>
,Constable
Enums that lists most Venice user store types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAll user stores in Venice, excluding system stores.The data in batch-only stores will be populated by offline pushes/Samza reprocessing only.The data in hybrid stores will be populated by offline pushes/Samza reprocessing as well as Samza real-time updates.These stores are either hybrid or incremental push enabled.The data in these stores are from full pushes and incremental pushes.These stores are system stores whose name starts withStore.SYSTEM_STORE_NAME_PREFIX
. -
Method Summary
Modifier and TypeMethodDescriptionstatic VeniceUserStoreType
Returns the enum constant of this class with the specified name.static VeniceUserStoreType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BATCH_ONLY
The data in batch-only stores will be populated by offline pushes/Samza reprocessing only. -
HYBRID_ONLY
The data in hybrid stores will be populated by offline pushes/Samza reprocessing as well as Samza real-time updates. -
INCREMENTAL_PUSH
The data in these stores are from full pushes and incremental pushes. -
HYBRID_OR_INCREMENTAL
These stores are either hybrid or incremental push enabled. -
SYSTEM
These stores are system stores whose name starts withStore.SYSTEM_STORE_NAME_PREFIX
. -
ALL
All user stores in Venice, excluding system stores.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-