Uses of Enum Class
java.io.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
Modifier 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.Modifier 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
.