Uses of Interface
com.tangosol.net.ValueTypeAssertion
-
Packages that use ValueTypeAssertion Package Description com.tangosol.coherence.config.builder Defines the typical runtime configuration builders for the Coherence configuration object model.com.tangosol.coherence.config.scheme Defines the Coherence configuration object model classes and interfaces for Caching and Service Schemes.com.tangosol.net Contains basic cluster interfaces and factories. -
-
Uses of ValueTypeAssertion in com.tangosol.coherence.config.builder
Methods in com.tangosol.coherence.config.builder with parameters of type ValueTypeAssertion Modifier and Type Method Description <E> C
NamedCollectionBuilder. realize(ValueTypeAssertion<E> typeConstraint, ParameterResolver resolver, MapBuilder.Dependencies dependencies)
Realizes aNamedCollection
(possibly "ensuring it") based on the state of the builder, the providedParameterResolver
andMapBuilder
dependencies. -
Uses of ValueTypeAssertion in com.tangosol.coherence.config.scheme
Methods in com.tangosol.coherence.config.scheme with parameters of type ValueTypeAssertion Modifier and Type Method Description <V> NamedTopic
PagedTopicScheme. realize(ValueTypeAssertion<V> typeConstraint, ParameterResolver resolver, MapBuilder.Dependencies deps)
-
Uses of ValueTypeAssertion in com.tangosol.net
Classes in com.tangosol.net that implement ValueTypeAssertion Modifier and Type Class Description static class
ValueTypeAssertion.WithValueTypeAssertion<V>
Defines aNamedCollection.Option
for asserting the type of values used with aNamedTopic
.Fields in com.tangosol.net declared as ValueTypeAssertion Modifier and Type Field Description static ValueTypeAssertion
ValueTypeAssertion. WITH_RAW_TYPES
When used warnings will be issued where types are configured but not used.static ValueTypeAssertion
ValueTypeAssertion. WITHOUT_TYPE_CHECKING
When used no type checking will occur and no warnings will be generated.Methods in com.tangosol.net that return ValueTypeAssertion Modifier and Type Method Description static <V> ValueTypeAssertion<V>
ValueTypeAssertion. withoutTypeChecking()
Obtains aValueTypeAssertion
that allows topic to be acquired without type-checking, warnings or log messages.static <V> ValueTypeAssertion<V>
ValueTypeAssertion. withRawTypes()
Obtains aValueTypeAssertion
that allows topic to be acquired and assigned to a rawNamedTopic
reference.static <V> ValueTypeAssertion<V>
ValueTypeAssertion. withType(Class<V> clsElement)
Obtains aValueTypeAssertion
that asserts the specified types are configured for a topic.
-