Uses of Enum Class
java.io.ObjectInputFilter.Status
Packages that use ObjectInputFilter.Status
Package
Description
Provides for system input and output through data streams,
serialization and the file system.
-
Uses of ObjectInputFilter.Status in java.io
Methods in java.io that return ObjectInputFilter.StatusModifier and TypeMethodDescriptionObjectInputFilter.checkInput
(ObjectInputFilter.FilterInfo filterInfo) Check the class, array length, number of object references, depth, stream size, and other available filtering information.static ObjectInputFilter.Status
Returns the enum constant of this class with the specified name.static ObjectInputFilter.Status[]
ObjectInputFilter.Status.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in java.io with parameters of type ObjectInputFilter.StatusModifier and TypeMethodDescriptionstatic ObjectInputFilter
ObjectInputFilter.allowFilter
(Predicate<Class<?>> predicate, ObjectInputFilter.Status otherStatus) Returns a filter that returnsStatus.ALLOWED
if the predicate on the class istrue
.static ObjectInputFilter
ObjectInputFilter.rejectFilter
(Predicate<Class<?>> predicate, ObjectInputFilter.Status otherStatus) Returns a filter that returnsStatus.REJECTED
if the predicate on the class istrue
.