Package com.nexmo.client.insight
Enum AdvancedInsightResponse.PortedStatus
- java.lang.Object
-
- java.lang.Enum<AdvancedInsightResponse.PortedStatus>
-
- com.nexmo.client.insight.AdvancedInsightResponse.PortedStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AdvancedInsightResponse.PortedStatus>
- Enclosing class:
- AdvancedInsightResponse
public static enum AdvancedInsightResponse.PortedStatus extends java.lang.Enum<AdvancedInsightResponse.PortedStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSUMED_NOT_PORTEDASSUMED_PORTEDNOT_PORTEDPORTEDUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AdvancedInsightResponse.PortedStatusfromString(java.lang.String name)static AdvancedInsightResponse.PortedStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AdvancedInsightResponse.PortedStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final AdvancedInsightResponse.PortedStatus UNKNOWN
-
PORTED
public static final AdvancedInsightResponse.PortedStatus PORTED
-
NOT_PORTED
public static final AdvancedInsightResponse.PortedStatus NOT_PORTED
-
ASSUMED_NOT_PORTED
public static final AdvancedInsightResponse.PortedStatus ASSUMED_NOT_PORTED
-
ASSUMED_PORTED
public static final AdvancedInsightResponse.PortedStatus ASSUMED_PORTED
-
-
Method Detail
-
values
public static AdvancedInsightResponse.PortedStatus[] 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 (AdvancedInsightResponse.PortedStatus c : AdvancedInsightResponse.PortedStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdvancedInsightResponse.PortedStatus 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
-
fromString
public static AdvancedInsightResponse.PortedStatus fromString(java.lang.String name)
-
-