static enum GroovyTemplateCompiler.CurrentContext extends java.lang.Enum<GroovyTemplateCompiler.CurrentContext>
| 列挙型定数と説明 |
|---|
CODE |
COMMENT_BLOCK |
COMMENT_LINE |
STRING_D |
STRING_S |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static GroovyTemplateCompiler.CurrentContext |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static GroovyTemplateCompiler.CurrentContext[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final GroovyTemplateCompiler.CurrentContext CODE
public static final GroovyTemplateCompiler.CurrentContext STRING_D
public static final GroovyTemplateCompiler.CurrentContext STRING_S
public static final GroovyTemplateCompiler.CurrentContext COMMENT_LINE
public static final GroovyTemplateCompiler.CurrentContext COMMENT_BLOCK
public static GroovyTemplateCompiler.CurrentContext[] values()
for(GroovyTemplateCompiler.CurrentContext c: GroovyTemplateCompiler.CurrentContext.values()) System.out.println(c);
public static GroovyTemplateCompiler.CurrentContext valueOf(java.lang.String name)
name - 返される列挙型定数の名前。java.lang.IllegalArgumentException - この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException - 引数がnullの場合