Package com.podio.search
Enum ReferenceTypeSearchInApp
- java.lang.Object
-
- java.lang.Enum<ReferenceTypeSearchInApp>
-
- com.podio.search.ReferenceTypeSearchInApp
-
- All Implemented Interfaces:
Serializable,Comparable<ReferenceTypeSearchInApp>
public enum ReferenceTypeSearchInApp extends Enum<ReferenceTypeSearchInApp>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReferenceTypeSearchInAppgetByName(String value)StringtoString()static ReferenceTypeSearchInAppvalueOf(String name)Returns the enum constant of this type with the specified name.static ReferenceTypeSearchInApp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APP
public static final ReferenceTypeSearchInApp APP
-
CONVERSATION
public static final ReferenceTypeSearchInApp CONVERSATION
-
FILE
public static final ReferenceTypeSearchInApp FILE
-
ITEM
public static final ReferenceTypeSearchInApp ITEM
-
PROFILE
public static final ReferenceTypeSearchInApp PROFILE
-
STATUS
public static final ReferenceTypeSearchInApp STATUS
-
TASK
public static final ReferenceTypeSearchInApp TASK
-
-
Method Detail
-
values
public static ReferenceTypeSearchInApp[] 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 (ReferenceTypeSearchInApp c : ReferenceTypeSearchInApp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReferenceTypeSearchInApp valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<ReferenceTypeSearchInApp>
-
getByName
public static ReferenceTypeSearchInApp getByName(String value)
-
-