public static enum OmpParser.omp_clause extends java.lang.Enum<OmpParser.omp_clause>
Enum Constant and Description |
---|
token_collapse |
token_copyin |
token_copyprivate |
token_default |
token_firstprivate |
token_if |
token_lastprivate |
token_nowait |
token_num_threads |
token_ordered |
token_private |
token_reduction |
token_schedule |
token_shared |
token_untied |
Modifier and Type | Method and Description |
---|---|
static OmpParser.omp_clause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OmpParser.omp_clause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OmpParser.omp_clause token_if
public static final OmpParser.omp_clause token_num_threads
public static final OmpParser.omp_clause token_default
public static final OmpParser.omp_clause token_private
public static final OmpParser.omp_clause token_firstprivate
public static final OmpParser.omp_clause token_lastprivate
public static final OmpParser.omp_clause token_shared
public static final OmpParser.omp_clause token_copyprivate
public static final OmpParser.omp_clause token_copyin
public static final OmpParser.omp_clause token_schedule
public static final OmpParser.omp_clause token_nowait
public static final OmpParser.omp_clause token_ordered
public static final OmpParser.omp_clause token_untied
public static final OmpParser.omp_clause token_collapse
public static final OmpParser.omp_clause token_reduction
public static OmpParser.omp_clause[] values()
for (OmpParser.omp_clause c : OmpParser.omp_clause.values()) System.out.println(c);
public static OmpParser.omp_clause valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null