public enum SnippetType extends Enum<SnippetType>
| Enum Constant and Description |
|---|
CAMELCASE |
UNDERSCORE |
| Modifier and Type | Method and Description |
|---|---|
static SnippetType |
fromString(String name) |
cucumber.runtime.snippets.FunctionNameGenerator |
getFunctionNameGenerator() |
static SnippetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnippetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnippetType UNDERSCORE
public static final SnippetType CAMELCASE
public static SnippetType[] values()
for (SnippetType c : SnippetType.values()) System.out.println(c);
public static SnippetType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic static SnippetType fromString(String name)
public cucumber.runtime.snippets.FunctionNameGenerator getFunctionNameGenerator()
Copyright © 2014. All Rights Reserved.