Enum RegisterFinVoiceCallRequest.Source.Value
- java.lang.Object
-
- java.lang.Enum<RegisterFinVoiceCallRequest.Source.Value>
-
- com.intercom.api.resources.unstable.types.RegisterFinVoiceCallRequest.Source.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RegisterFinVoiceCallRequest.Source.Value>
- Enclosing class:
- RegisterFinVoiceCallRequest.Source
public static enum RegisterFinVoiceCallRequest.Source.Value extends java.lang.Enum<RegisterFinVoiceCallRequest.Source.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS_CONNECTFIVE_9UNKNOWNZOOM_PHONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RegisterFinVoiceCallRequest.Source.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RegisterFinVoiceCallRequest.Source.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIVE_9
public static final RegisterFinVoiceCallRequest.Source.Value FIVE_9
-
ZOOM_PHONE
public static final RegisterFinVoiceCallRequest.Source.Value ZOOM_PHONE
-
AWS_CONNECT
public static final RegisterFinVoiceCallRequest.Source.Value AWS_CONNECT
-
UNKNOWN
public static final RegisterFinVoiceCallRequest.Source.Value UNKNOWN
-
-
Method Detail
-
values
public static RegisterFinVoiceCallRequest.Source.Value[] 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 (RegisterFinVoiceCallRequest.Source.Value c : RegisterFinVoiceCallRequest.Source.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegisterFinVoiceCallRequest.Source.Value 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
-
-