public enum FileEditorPolicy extends java.lang.Enum<FileEditorPolicy>
Enum Constant and Description |
---|
HIDE_DEFAULT_EDITOR
Do not create default IDE editor (if any) for the file.
|
NONE
No policy
|
PLACE_AFTER_DEFAULT_EDITOR
Place created editor after the default IDE editor (if any).
|
PLACE_BEFORE_DEFAULT_EDITOR
Place created editor before default IDE editor (if any).
|
Modifier and Type | Method and Description |
---|---|
static FileEditorPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileEditorPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileEditorPolicy PLACE_BEFORE_DEFAULT_EDITOR
public static final FileEditorPolicy NONE
public static final FileEditorPolicy HIDE_DEFAULT_EDITOR
public static final FileEditorPolicy PLACE_AFTER_DEFAULT_EDITOR
public static FileEditorPolicy[] values()
for (FileEditorPolicy c : FileEditorPolicy.values()) System.out.println(c);
public static FileEditorPolicy 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