Package net.sourceforge.uiq3.fa2
Enum Files
- java.lang.Object
-
- java.lang.Enum<Files>
-
- net.sourceforge.uiq3.fa2.Files
-
- All Implemented Interfaces:
Serializable
,Comparable<Files>
public enum Files extends Enum<Files>
- Since:
- 1.0
- Version:
- 1.0
- Author:
- martin
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Biorhythmus
Calculator_0
Calculator_1
Calculator_2
Errors
Printer
QDTADD
Tape
-
Field Summary
Fields Modifier and Type Field Description short @NotNull []
Casio_Filename
filename of Testfile usable for CASIO file I/Oshort @NotNull []
EXE
Execute and all file load loadprivate static int
Header_Footer_Size
a file has two (PF, DF) or three header (AF).String
Java_Filename
filename of Testfile usable for java file I/Oint
Last_Step
the last test loadedlong
Length
File lengthString
Loaded_Programs
Text to be displayed when Loaded_Programs is activeprivate static int
Loaded_Programs_Length
Length of the loaded program string.private static Logger
Logger
Class logger instance.int
M_Length
amount of MF registerint
MF_Length
amount of M registerprivate static String
Project_Home
Project homeprivate static String
TAG
Class logger tag.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description File
asAbsolutePath()
Resolves the absolute file for Unit testing.static File
asAbsolutePath(String Base_Name)
Resolves the absolute file for Unit testing.@NotNull String
toString()
static Files
valueOf(String name)
Returns the enum constant of this type with the specified name.static Files[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Biorhythmus
public static final Files Biorhythmus
-
QDTADD
public static final Files QDTADD
-
Calculator_0
public static final Files Calculator_0
-
Calculator_1
public static final Files Calculator_1
-
Calculator_2
public static final Files Calculator_2
-
Errors
public static final Files Errors
-
Printer
public static final Files Printer
-
Tape
public static final Files Tape
-
-
Field Detail
-
Header_Footer_Size
private static final int Header_Footer_Size
a file has two (PF, DF) or three header (AF).- See Also:
- Constant Field Values
-
Loaded_Programs_Length
private static final int Loaded_Programs_Length
Length of the loaded program string.- See Also:
- Constant Field Values
-
Logger
private static final Logger Logger
Class logger instance.
-
TAG
private static final String TAG
Class logger tag.
-
Casio_Filename
public final short @NotNull [] Casio_Filename
filename of Testfile usable for CASIO file I/O
-
EXE
public final short @NotNull [] EXE
Execute and all file load load
-
Java_Filename
public final String Java_Filename
filename of Testfile usable for java file I/O
-
Last_Step
public final int Last_Step
the last test loaded
-
Length
public final long Length
File length
-
Loaded_Programs
public final String Loaded_Programs
Text to be displayed when Loaded_Programs is active
-
MF_Length
public final int MF_Length
amount of M register
-
M_Length
public final int M_Length
amount of MF register
-
Project_Home
private static final String Project_Home
Project home
-
-
Method Detail
-
values
public static Files[] 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 (Files c : Files.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Files valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
asAbsolutePath
@NotNull public static File asAbsolutePath(String Base_Name)
Resolves the absolute file for Unit testing.- Returns:
- absolute path of the file
-
asAbsolutePath
@NotNull public File asAbsolutePath()
Resolves the absolute file for Unit testing.- Returns:
- absolute path of the file
-
-