Package com.treasure.hunt.strategy.geom
Enum StatusMessageType
- java.lang.Object
-
- java.lang.Enum<StatusMessageType>
-
- com.treasure.hunt.strategy.geom.StatusMessageType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StatusMessageType>
public enum StatusMessageType extends java.lang.Enum<StatusMessageType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
java.lang.String
getName()
boolean
isFromHider()
set to true if Status is a status of the hider otherwise set to falseboolean
isOverride()
static StatusMessageType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StatusMessageType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANGLE_HINT_DEGREE
public static final StatusMessageType ANGLE_HINT_DEGREE
-
PREVIOUS_HINT_QUALITY
public static final StatusMessageType PREVIOUS_HINT_QUALITY
-
BEFORE_PREVIOUS_QUALITY
public static final StatusMessageType BEFORE_PREVIOUS_QUALITY
-
EXPLANATION_MOVEMENT
public static final StatusMessageType EXPLANATION_MOVEMENT
-
EXPLANATION_STRATEGY
public static final StatusMessageType EXPLANATION_STRATEGY
-
EXPLANATION_VISUALISATION_SEARCHER
public static final StatusMessageType EXPLANATION_VISUALISATION_SEARCHER
-
ROTATION_RECTANGLE
public static final StatusMessageType ROTATION_RECTANGLE
-
EXPLANATION_VISUALISATION_HIDER
public static final StatusMessageType EXPLANATION_VISUALISATION_HIDER
-
PREFERRED_SIZE_OF_HINT
public static final StatusMessageType PREFERRED_SIZE_OF_HINT
-
REMAINING_POSSIBLE_AREA
public static final StatusMessageType REMAINING_POSSIBLE_AREA
-
RELATIVE_AREA_CUTOFF
public static final StatusMessageType RELATIVE_AREA_CUTOFF
-
RELATIVE_AREA_CUTOFF_RATING
public static final StatusMessageType RELATIVE_AREA_CUTOFF_RATING
-
DISTANCE_TREASURE_TO_CENTROID
public static final StatusMessageType DISTANCE_TREASURE_TO_CENTROID
-
DISTANCE_TREASURE_TO_CENTROID_RATING
public static final StatusMessageType DISTANCE_TREASURE_TO_CENTROID_RATING
-
DISTANCE_ANGLE_BISECTOR_TREASURE
public static final StatusMessageType DISTANCE_ANGLE_BISECTOR_TREASURE
-
DISTANCE_ANGLE_BISECTOR_RATING
public static final StatusMessageType DISTANCE_ANGLE_BISECTOR_RATING
-
HINT_QUALITY_HIDER
public static final StatusMessageType HINT_QUALITY_HIDER
-
HINT_QUALITY_HIDER_RATING
public static final StatusMessageType HINT_QUALITY_HIDER_RATING
-
OVERALL_HINT_RATING
public static final StatusMessageType OVERALL_HINT_RATING
-
CURRENT_TREASURE_POSITION
public static final StatusMessageType CURRENT_TREASURE_POSITION
-
-
Method Detail
-
values
public static StatusMessageType[] 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 (StatusMessageType c : StatusMessageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatusMessageType 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
-
getName
public java.lang.String getName()
-
isOverride
public boolean isOverride()
-
isFromHider
public boolean isFromHider()
set to true if Status is a status of the hider otherwise set to false
-
getDescription
public java.lang.String getDescription()
-
-