Uses of Class
net.sourceforge.jnlp.cache.Resource.Status
-
Packages that use Resource.Status Package Description net.sourceforge.jnlp.cache This package contains the JNLP cache. -
-
Uses of Resource.Status in net.sourceforge.jnlp.cache
Methods in net.sourceforge.jnlp.cache that return Resource.Status Modifier and Type Method Description static Resource.Status
Resource.Status. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Resource.Status[]
Resource.Status. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.sourceforge.jnlp.cache that return types with arguments of type Resource.Status Modifier and Type Method Description java.util.Set<Resource.Status>
Resource. getCopyOfStatus()
Methods in net.sourceforge.jnlp.cache with parameters of type Resource.Status Modifier and Type Method Description boolean
Resource. isSet(Resource.Status flag)
Check if the specified flag is set.void
Resource. setStatusFlag(Resource.Status flag)
Set status flagMethod parameters in net.sourceforge.jnlp.cache with type arguments of type Resource.Status Modifier and Type Method Description void
Resource. changeStatus(java.util.Collection<Resource.Status> clear, java.util.Collection<Resource.Status> add)
Changes the status by clearing the flags in the first parameter and setting the flags in the second.boolean
Resource. hasFlags(java.util.Collection<Resource.Status> flags)
Check if all the specified flags are set.void
Resource. setStatusFlags(java.util.Collection<Resource.Status> flags)
Set flagsvoid
Resource. unsetStatusFlag(java.util.Collection<Resource.Status> flags)
Unset flags
-