Enum Targets.Option
- java.lang.Object
-
- java.lang.Enum<Targets.Option>
-
- com.dslplatform.compiler.client.parameters.Targets.Option
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Targets.Option>
- Enclosing class:
- Targets
public static enum Targets.Option extends java.lang.Enum<Targets.Option>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description private BuildActionactionprivate booleanconvertToPathprivate java.lang.Stringdescriptionprivate java.lang.Stringextensionprivate booleanusesPreviousDslprivate java.lang.Stringvalue
-
Constructor Summary
Constructors Modifier Constructor Description privateOption(java.lang.String value, java.lang.String description, java.lang.String extension, BuildAction action, boolean convertToPath, boolean usesPreviousDsl)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static Targets.Optionfrom(java.lang.String value)java.lang.StringtoString()static Targets.OptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Targets.Option[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REVENJ_JAVA
public static final Targets.Option REVENJ_JAVA
-
REVENJ_JAVA_POSTGRES
public static final Targets.Option REVENJ_JAVA_POSTGRES
-
REVENJ_SPRING
public static final Targets.Option REVENJ_SPRING
-
JAVA_CLIENT
public static final Targets.Option JAVA_CLIENT
-
JAVA_POJO
public static final Targets.Option JAVA_POJO
-
JAVA_EXTERNAL_JSON
public static final Targets.Option JAVA_EXTERNAL_JSON
-
ANDORID
public static final Targets.Option ANDORID
-
ANDORID_EXTERNAL_JSON
public static final Targets.Option ANDORID_EXTERNAL_JSON
-
REVENJ_NET
public static final Targets.Option REVENJ_NET
-
REVENJ_NET_POSTGRES
public static final Targets.Option REVENJ_NET_POSTGRES
-
REVENJ_NET_ORACLE_32
public static final Targets.Option REVENJ_NET_ORACLE_32
-
REVENJ_NET_ORACLE_64
public static final Targets.Option REVENJ_NET_ORACLE_64
-
DOTNET_POCO
public static final Targets.Option DOTNET_POCO
-
DOTNET_CLIENT
public static final Targets.Option DOTNET_CLIENT
-
DOTNET_PORTABLE
public static final Targets.Option DOTNET_PORTABLE
-
DOTNET_WPF
public static final Targets.Option DOTNET_WPF
-
PHP
public static final Targets.Option PHP
-
PHP_UI
public static final Targets.Option PHP_UI
-
KNOCKOUT
public static final Targets.Option KNOCKOUT
-
TYPESCRIPT
public static final Targets.Option TYPESCRIPT
-
REACT
public static final Targets.Option REACT
-
SCALA_CLIENT
public static final Targets.Option SCALA_CLIENT
-
SCALA_POSO
public static final Targets.Option SCALA_POSO
-
REVENJ_SCALA
public static final Targets.Option REVENJ_SCALA
-
REVENJ_SCALA_POSTGRES
public static final Targets.Option REVENJ_SCALA_POSTGRES
-
SCALA_SERVER_ORACLE
public static final Targets.Option SCALA_SERVER_ORACLE
-
HTML_DOCUMENTATION
public static final Targets.Option HTML_DOCUMENTATION
-
-
Field Detail
-
value
private final java.lang.String value
-
description
private final java.lang.String description
-
extension
private final java.lang.String extension
-
action
private final BuildAction action
-
convertToPath
private final boolean convertToPath
-
usesPreviousDsl
private final boolean usesPreviousDsl
-
-
Constructor Detail
-
Option
private Option(java.lang.String value, java.lang.String description, java.lang.String extension, BuildAction action, boolean convertToPath, boolean usesPreviousDsl)
-
-
Method Detail
-
values
public static Targets.Option[] 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 (Targets.Option c : Targets.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Targets.Option 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
-
from
private static Targets.Option from(java.lang.String value)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Targets.Option>
-
-