public enum InterpretorType extends Enum<InterpretorType>
Classe Java pour interpretorType.
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
<simpleType name="interpretorType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="CMD"/> <enumeration value="CYGWIN"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static InterpretorType |
fromValue(String v) |
String |
value() |
static InterpretorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpretorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpretorType CMD
public static final InterpretorType CYGWIN
public static InterpretorType[] values()
for (InterpretorType c : InterpretorType.values()) System.out.println(c);
public static InterpretorType 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 String value()
public static InterpretorType fromValue(String v)
Copyright © 2010-2022. All Rights Reserved.