Enum ImportOrderOption
- All Implemented Interfaces:
Serializable
,Comparable<ImportOrderOption>
Represents the policy for checking import order statements.
- See Also:
-
Enum Constant Summary
Enum ConstantDescriptionRepresents the policy that static imports are above the local group.Represents the policy that static imports are all at the bottom.Represents the policy that static imports are processed like non static imports.Represents the policy that static imports are all at the top.Represents the policy that static imports are under the local group. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ImportOrderOption
Returns the enum constant of this type with the specified name.static ImportOrderOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TOP
Represents the policy that static imports are all at the top. For example: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;
-
ABOVE
Represents the policy that static imports are above the local group. For example: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;
-
INFLOW
Represents the policy that static imports are processed like non static imports. For example: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;
-
UNDER
Represents the policy that static imports are under the local group. For example: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;
-
BOTTOM
Represents the policy that static imports are all at the bottom. For example: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.*;
-
-
Constructor Details
-
ImportOrderOption
private ImportOrderOption()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-