Package com.google.javascript.jscomp
Enum CompilerOptions.Es6ModuleTranspilation
- java.lang.Object
-
- java.lang.Enum<CompilerOptions.Es6ModuleTranspilation>
-
- com.google.javascript.jscomp.CompilerOptions.Es6ModuleTranspilation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CompilerOptions.Es6ModuleTranspilation>
- Enclosing class:
- CompilerOptions
public static enum CompilerOptions.Es6ModuleTranspilation extends java.lang.Enum<CompilerOptions.Es6ModuleTranspilation>
How ES modules should be transformed.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPILE
Compile ES modules.NONE
Do not touch any Es6 module feature.RELATIVIZE_IMPORT_PATHS
Rewrite import paths to resolved, relative paths only.TO_COMMON_JS_LIKE_MODULES
Rewrite to common js like modules for bundling.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CompilerOptions.Es6ModuleTranspilation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompilerOptions.Es6ModuleTranspilation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CompilerOptions.Es6ModuleTranspilation NONE
Do not touch any Es6 module feature.
-
RELATIVIZE_IMPORT_PATHS
public static final CompilerOptions.Es6ModuleTranspilation RELATIVIZE_IMPORT_PATHS
Rewrite import paths to resolved, relative paths only.
-
TO_COMMON_JS_LIKE_MODULES
public static final CompilerOptions.Es6ModuleTranspilation TO_COMMON_JS_LIKE_MODULES
Rewrite to common js like modules for bundling.
-
COMPILE
public static final CompilerOptions.Es6ModuleTranspilation COMPILE
Compile ES modules.
-
-
Method Detail
-
values
public static CompilerOptions.Es6ModuleTranspilation[] 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 (CompilerOptions.Es6ModuleTranspilation c : CompilerOptions.Es6ModuleTranspilation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompilerOptions.Es6ModuleTranspilation 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
-
-