Package org.gjt.sp.jedit
Enum LargeFileMode
- java.lang.Object
-
- java.lang.Enum<LargeFileMode>
-
- org.gjt.sp.jedit.LargeFileMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LargeFileMode>
public enum LargeFileMode extends java.lang.Enum<LargeFileMode>
The enum representing the large file mode option.- Since:
- jEdit 5.7pre1
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ask
full
limited
nohighlight
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isLongBufferMode()
static LargeFileMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LargeFileMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ask
public static final LargeFileMode ask
-
full
public static final LargeFileMode full
-
limited
public static final LargeFileMode limited
-
nohighlight
public static final LargeFileMode nohighlight
-
-
Method Detail
-
values
public static LargeFileMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LargeFileMode c : LargeFileMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LargeFileMode valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
isLongBufferMode
public boolean isLongBufferMode()
-
-