public static enum LaunchJNLP.EFlag extends java.lang.Enum<LaunchJNLP.EFlag>
Different flags depending on the underlying OS.
Currently only Microsoft Windows Direct3D flags are recognized. An informative page on these flags can be found under Sun's Java Web pages.
Alongside the here defined Microsoft flags there exists more documentation on others. Here is a list of some information web pages (this list is not exhaustive and their may be more flags which can also be established in this enumeration):
Enum Constant and Description |
---|
D3D_PIPELINE
Microsoft Windows, Direct3D - flag for the use of Direct3D pipeline.
|
Modifier and Type | Method and Description |
---|---|
static LaunchJNLP.EFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LaunchJNLP.EFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchJNLP.EFlag D3D_PIPELINE
public static LaunchJNLP.EFlag[] values()
for (LaunchJNLP.EFlag c : LaunchJNLP.EFlag.values()) System.out.println(c);
public static LaunchJNLP.EFlag 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 null13-September-2017 07:50 Deutsches Elektronen-Synchrotron DESY in der Helmholtz-Gemeinschaft