com.fasterxml.jackson.databind.util.AccessPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
package com.fasterxml.jackson.databind.util;
/**
* Enumeration used to indicate required access pattern for providers:
* this can sometimes be used to optimize out dynamic calls.
* The main difference is between constant values (which can be resolved once)
* and dynamic ones (which must be resolved anew every time).
*/
public enum AccessPattern {
/**
* Value that indicates that provider never returns anything other than
* Java `null`.
*/
ALWAYS_NULL,
/**
* Value that indicates that provider will always return a constant
* value, regardless of when it is called; and also that it never
* uses `context` argument (which may then be passed as `null`)
*/
CONSTANT,
/**
* Value that indicates that provider may return different values
* at different times (often a freshly constructed empty container),
* and thus must be called every time "null replacement" value is
* needed.
*/
DYNAMIC
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy