public enum SCacheFilePriority extends java.lang.Enum<SCacheFilePriority>
Enum Constant and Description |
---|
DEFAULT
The default priority.
|
HIGH
The second highest priority.
|
LOW
The second lowest priority.
|
VERY_HIGH
The highest priority: pages are the least likely to be discarded.
|
VERY_LOW
The lowest priority: pages are the most likely to be discarded.
|
Modifier and Type | Method and Description |
---|---|
static SCacheFilePriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SCacheFilePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCacheFilePriority VERY_LOW
public static final SCacheFilePriority LOW
public static final SCacheFilePriority DEFAULT
public static final SCacheFilePriority HIGH
public static final SCacheFilePriority VERY_HIGH
public static SCacheFilePriority[] values()
for (SCacheFilePriority c : SCacheFilePriority.values()) System.out.println(c);
public static SCacheFilePriority valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved.