Package org.lemsml.export.vhdl
Enum VHDLWriter.Method
- java.lang.Object
-
- java.lang.Enum<VHDLWriter.Method>
-
- org.lemsml.export.vhdl.VHDLWriter.Method
-
- All Implemented Interfaces:
Serializable
,Comparable<VHDLWriter.Method>
- Enclosing class:
- VHDLWriter
public static enum VHDLWriter.Method extends Enum<VHDLWriter.Method>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNTER
DEFAULTPARAMJSON
DEFAULTREADBACKJSON
EXP
MUX
POW
SIELEGANS_TOP
SYNTH_TOP
TESTBENCH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFilename()
static VHDLWriter.Method
valueOf(String name)
Returns the enum constant of this type with the specified name.static VHDLWriter.Method[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TESTBENCH
public static final VHDLWriter.Method TESTBENCH
-
SYNTH_TOP
public static final VHDLWriter.Method SYNTH_TOP
-
SIELEGANS_TOP
public static final VHDLWriter.Method SIELEGANS_TOP
-
DEFAULTPARAMJSON
public static final VHDLWriter.Method DEFAULTPARAMJSON
-
DEFAULTREADBACKJSON
public static final VHDLWriter.Method DEFAULTREADBACKJSON
-
MUX
public static final VHDLWriter.Method MUX
-
EXP
public static final VHDLWriter.Method EXP
-
POW
public static final VHDLWriter.Method POW
-
COUNTER
public static final VHDLWriter.Method COUNTER
-
-
Method Detail
-
values
public static VHDLWriter.Method[] 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 (VHDLWriter.Method c : VHDLWriter.Method.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VHDLWriter.Method 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
-
getFilename
public String getFilename()
-
-