Enum: ParseableFile.Mode
Last update: 22.06.2026Package: com.phoenix_int.aserver.util.scriptwrapper.api
Enclosing interface:
Class Hierarchy
↳ java.lang.Object
↳ java.lang.Enum<parseablefile>
↳ com.phoenix_int.aserver.util.scriptwrapper.api.ParseableFile.Mode
Implemented Interfaces
java.io.Serializable,java.lang.Comparable<parseablefile>
Declaration
public static enum ParseableFile.Mode
extends java.lang.Enum<parseablefile>
File mode. Moved to type-safe enum from legacy integer constants.
Enum Constant Summary
| Enum Constant and Description |
|---|
GENERATE |
PARSE |
READ_TEMPLATE |
Method Summary
| Modifier and Type | Method and Description |
|---|---|
static ParseableFile.Mode |
fromCode(int code)Utility function for determining the enum from the legacy integer code |
int |
getCode() Retrieve the legacy integer code assigned to this mode |
com.phoenix_int.aserver.trace.PHXTraceFileEvent.Type |
getEventType() |
static ParseableFile.Mode |
valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static ParseableFile.Mode[] |
values() Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
Enum Constant Detail
GENERATE
public static final ParseableFile.Mode GENERATE
PARSE
public static final ParseableFile.Mode PARSE
READ_TEMPLATE
public static final ParseableFile.Mode READ_TEMPLATE
Method Detail
values
public static ParseableFile.Mode[] 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 (ParseableFile.Mode c : ParseableFile.Mode.values())
System.out.println(c);
Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static ParseableFile.Mode 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
getEventType
public com.phoenix_int.aserver.trace.PHXTraceFileEvent.Type getEventType()
getCode
public int getCode()
Retrieve the legacy integer code assigned to this mode
Returns:
- code
fromCode
public static ParseableFile.Mode fromCode(int code)
Utility function for determining the enum from the legacy integer code
Parameters:
code-
Returns: