Uses of Class
com.google.gson.ReflectionAccessFilter.FilterResult
-
Packages that use ReflectionAccessFilter.FilterResult Package Description com.google.gson This package provides theGson
class to convert Json to Java and vice-versa.com.google.gson.internal Do NOT use any class in this package as they are meant for internal use in Gson. -
-
Uses of ReflectionAccessFilter.FilterResult in com.google.gson
Methods in com.google.gson that return ReflectionAccessFilter.FilterResult Modifier and Type Method Description ReflectionAccessFilter.FilterResult
ReflectionAccessFilter. check(java.lang.Class<?> rawClass)
Checks if reflection access should be allowed for a class.static ReflectionAccessFilter.FilterResult
ReflectionAccessFilter.FilterResult. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReflectionAccessFilter.FilterResult[]
ReflectionAccessFilter.FilterResult. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ReflectionAccessFilter.FilterResult in com.google.gson.internal
Methods in com.google.gson.internal that return ReflectionAccessFilter.FilterResult Modifier and Type Method Description static ReflectionAccessFilter.FilterResult
ReflectionAccessFilterHelper. getFilterResult(java.util.List<ReflectionAccessFilter> reflectionFilters, java.lang.Class<?> c)
Gets the result of applying all filters until the first one returns a result other thanINDECISIVE
, orALLOW
if the list of filters is empty or all returnedINDECISIVE
.Methods in com.google.gson.internal with parameters of type ReflectionAccessFilter.FilterResult Modifier and Type Method Description private static <T> ObjectConstructor<T>
ConstructorConstructor. newDefaultConstructor(java.lang.Class<? super T> rawType, ReflectionAccessFilter.FilterResult filterResult)
-