Enum PathStatus
- java.lang.Object
-
- java.lang.Enum<PathStatus>
-
- com.epicbot.api.shared.webwalking.model.PathStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PathStatus>
public enum PathStatus extends java.lang.Enum<PathStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCKED_END
BLOCKED_START
EXCEEDED_SEARCH_LIMIT
NO_WEB_PATH
SUCCESS
UNMAPPED_REGION
UNREACHABLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PathStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PathStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNMAPPED_REGION
@SerializedName("UNMAPPED_REGION") public static final PathStatus UNMAPPED_REGION
-
SUCCESS
@SerializedName("SUCCESS") public static final PathStatus SUCCESS
-
BLOCKED_END
@SerializedName("BLOCKED_END") public static final PathStatus BLOCKED_END
-
BLOCKED_START
@SerializedName("BLOCKED_START") public static final PathStatus BLOCKED_START
-
EXCEEDED_SEARCH_LIMIT
@SerializedName("EXCEEDED_SEARCH_LIMIT") public static final PathStatus EXCEEDED_SEARCH_LIMIT
-
UNREACHABLE
@SerializedName("UNREACHABLE") public static final PathStatus UNREACHABLE
-
NO_WEB_PATH
@SerializedName("NO_WEB_PATH") public static final PathStatus NO_WEB_PATH
-
-
Method Detail
-
values
public static PathStatus[] 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 (PathStatus c : PathStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathStatus 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
-
-