Enum SessionWriter.SessionWriterFlags
- java.lang.Object
-
- java.lang.Enum<SessionWriter.SessionWriterFlags>
-
- org.openstreetmap.josm.io.session.SessionWriter.SessionWriterFlags
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SessionWriter.SessionWriterFlags>
- Enclosing class:
- SessionWriter
public static enum SessionWriter.SessionWriterFlags extends java.lang.Enum<SessionWriter.SessionWriterFlags>
SessionWriter
options- Since:
- 18833
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IS_ZIP
Use if the file to be written needs to be a zip fileSAVE_PLUGIN_INFORMATION
Use if there are plugins that want to save information
-
Constructor Summary
Constructors Modifier Constructor Description private
SessionWriterFlags()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SessionWriter.SessionWriterFlags
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SessionWriter.SessionWriterFlags[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_ZIP
public static final SessionWriter.SessionWriterFlags IS_ZIP
Use if the file to be written needs to be a zip file
-
SAVE_PLUGIN_INFORMATION
public static final SessionWriter.SessionWriterFlags SAVE_PLUGIN_INFORMATION
Use if there are plugins that want to save information
-
-
Constructor Detail
-
SessionWriterFlags
private SessionWriterFlags()
-
-
Method Detail
-
values
public static SessionWriter.SessionWriterFlags[] 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 (SessionWriter.SessionWriterFlags c : SessionWriter.SessionWriterFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SessionWriter.SessionWriterFlags 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
-
-