public enum ImportOrderOption extends Enum<ImportOrderOption>
ImportOrderCheck
列挙型定数と説明 |
---|
ABOVE
Represents the policy that static imports are above the local group.
|
BOTTOM
Represents the policy that static imports are all at the bottom.
|
INFLOW
Represents the policy that static imports are processed like non static
imports.
|
TOP
Represents the policy that static imports are all at the top.
|
UNDER
Represents the policy that static imports are under the local group.
|
public static final ImportOrderOption TOP
import static java.awt.Button.ABORT; import static java.io.File.createTempFile; import static javax.swing.WindowConstants.*; import java.awt.Button; import java.awt.event.ActionEvent;
public static final ImportOrderOption ABOVE
import static java.awt.Button.A; import static javax.swing.WindowConstants.*; import java.awt.Dialog; import javax.swing.JComponent; import static java.io.File.createTempFile; import java.io.File; import java.io.IOException;
public static final ImportOrderOption INFLOW
import java.awt.Button; import static java.awt.Button.ABORT; import java.awt.Dialog; import static javax.swing.WindowConstants.HIDE_ON_CLOSE; import javax.swing.JComponent;
public static final ImportOrderOption UNDER
import java.awt.Dialog; import javax.swing.JComponent; import static java.awt.Button.A; import static javax.swing.WindowConstants.*; import java.io.File; import java.io.IOException; import static java.io.File.createTempFile;
public static final ImportOrderOption BOTTOM
import java.awt.Button; import java.awt.event.ActionEvent; import static java.awt.Button.ABORT; import static java.io.File.createTempFile; import static javax.swing.WindowConstants.*;
public static ImportOrderOption[] values()
for(ImportOrderOption c: ImportOrderOption.values()) System.out.println(c);
public static ImportOrderOption valueOf(String name)
name返される列挙型定数の名前
- IllegalArgumentException指定された名前を持つ定数を
- この列挙型が持っていない場合NullPointerException引数がnullの場合
Copyright © 2001-2013. All Rights Reserved.