Package jadx.gui.cache.code
Enum CodeCacheMode
- java.lang.Object
-
- java.lang.Enum<CodeCacheMode>
-
- jadx.gui.cache.code.CodeCacheMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CodeCacheMode>
public enum CodeCacheMode extends java.lang.Enum<CodeCacheMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISKDISK_WITH_CACHEMEMORY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.StringbuildToolTip()java.lang.StringgetDesc()static CodeCacheModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CodeCacheMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMORY
public static final CodeCacheMode MEMORY
-
DISK_WITH_CACHE
public static final CodeCacheMode DISK_WITH_CACHE
-
DISK
public static final CodeCacheMode DISK
-
-
Method Detail
-
values
public static CodeCacheMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CodeCacheMode c : CodeCacheMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CodeCacheMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getDesc
public java.lang.String getDesc()
-
buildToolTip
public static java.lang.String buildToolTip()
-
-