Enum IntercomVersion.Value
- java.lang.Object
-
- java.lang.Enum<IntercomVersion.Value>
-
- com.intercom.api.resources.unstable.types.IntercomVersion.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IntercomVersion.Value>
- Enclosing class:
- IntercomVersion
public static enum IntercomVersion.Value extends java.lang.Enum<IntercomVersion.Value>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntercomVersion.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IntercomVersion.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONE_0
public static final IntercomVersion.Value ONE_0
-
ONE_1
public static final IntercomVersion.Value ONE_1
-
ONE_2
public static final IntercomVersion.Value ONE_2
-
ONE_3
public static final IntercomVersion.Value ONE_3
-
ONE_4
public static final IntercomVersion.Value ONE_4
-
TWO_0
public static final IntercomVersion.Value TWO_0
-
TWO_1
public static final IntercomVersion.Value TWO_1
-
TWO_2
public static final IntercomVersion.Value TWO_2
-
TWO_3
public static final IntercomVersion.Value TWO_3
-
TWO_4
public static final IntercomVersion.Value TWO_4
-
TWO_5
public static final IntercomVersion.Value TWO_5
-
TWO_6
public static final IntercomVersion.Value TWO_6
-
TWO_7
public static final IntercomVersion.Value TWO_7
-
TWO_8
public static final IntercomVersion.Value TWO_8
-
TWO_9
public static final IntercomVersion.Value TWO_9
-
TWO_10
public static final IntercomVersion.Value TWO_10
-
TWO_11
public static final IntercomVersion.Value TWO_11
-
UNSTABLE
public static final IntercomVersion.Value UNSTABLE
-
UNKNOWN
public static final IntercomVersion.Value UNKNOWN
-
-
Method Detail
-
values
public static IntercomVersion.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 (IntercomVersion.Value c : IntercomVersion.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 IntercomVersion.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
-
-