Enum TagEditHelper.RefreshRecent
- java.lang.Object
-
- java.lang.Enum<TagEditHelper.RefreshRecent>
-
- org.openstreetmap.josm.gui.dialogs.properties.TagEditHelper.RefreshRecent
-
- All Implemented Interfaces:
Serializable
,Comparable<TagEditHelper.RefreshRecent>
- Enclosing class:
- TagEditHelper
private static enum TagEditHelper.RefreshRecent extends Enum<TagEditHelper.RefreshRecent>
What to do after applying tag
-
-
Constructor Summary
Constructors Modifier Constructor Description private
RefreshRecent()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TagEditHelper.RefreshRecent
valueOf(String name)
Returns the enum constant of this type with the specified name.static TagEditHelper.RefreshRecent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO
public static final TagEditHelper.RefreshRecent NO
-
STATUS
public static final TagEditHelper.RefreshRecent STATUS
-
REFRESH
public static final TagEditHelper.RefreshRecent REFRESH
-
-
Constructor Detail
-
RefreshRecent
private RefreshRecent()
-
-
Method Detail
-
values
public static TagEditHelper.RefreshRecent[] 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 (TagEditHelper.RefreshRecent c : TagEditHelper.RefreshRecent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagEditHelper.RefreshRecent valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-