Package com.kaltura.client.enums
Enum VendorServiceTurnAroundTime
- java.lang.Object
-
- java.lang.Enum<VendorServiceTurnAroundTime>
-
- com.kaltura.client.enums.VendorServiceTurnAroundTime
-
- All Implemented Interfaces:
EnumAsInt,Serializable,Comparable<VendorServiceTurnAroundTime>
public enum VendorServiceTurnAroundTime extends Enum<VendorServiceTurnAroundTime> implements EnumAsInt
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VendorServiceTurnAroundTimeget(Integer value)intgetValue()voidsetValue(int value)static VendorServiceTurnAroundTimevalueOf(String name)Returns the enum constant of this type with the specified name.static VendorServiceTurnAroundTime[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEST_EFFORT
public static final VendorServiceTurnAroundTime BEST_EFFORT
-
IMMEDIATE
public static final VendorServiceTurnAroundTime IMMEDIATE
-
ONE_BUSINESS_DAY
public static final VendorServiceTurnAroundTime ONE_BUSINESS_DAY
-
TWO_BUSINESS_DAYS
public static final VendorServiceTurnAroundTime TWO_BUSINESS_DAYS
-
THREE_BUSINESS_DAYS
public static final VendorServiceTurnAroundTime THREE_BUSINESS_DAYS
-
FOUR_BUSINESS_DAYS
public static final VendorServiceTurnAroundTime FOUR_BUSINESS_DAYS
-
FIVE_BUSINESS_DAYS
public static final VendorServiceTurnAroundTime FIVE_BUSINESS_DAYS
-
SIX_BUSINESS_DAYS
public static final VendorServiceTurnAroundTime SIX_BUSINESS_DAYS
-
SEVEN_BUSINESS_DAYS
public static final VendorServiceTurnAroundTime SEVEN_BUSINESS_DAYS
-
THIRTY_MINUTES
public static final VendorServiceTurnAroundTime THIRTY_MINUTES
-
TWO_HOURS
public static final VendorServiceTurnAroundTime TWO_HOURS
-
THREE_HOURS
public static final VendorServiceTurnAroundTime THREE_HOURS
-
SIX_HOURS
public static final VendorServiceTurnAroundTime SIX_HOURS
-
EIGHT_HOURS
public static final VendorServiceTurnAroundTime EIGHT_HOURS
-
TWELVE_HOURS
public static final VendorServiceTurnAroundTime TWELVE_HOURS
-
TWENTY_FOUR_HOURS
public static final VendorServiceTurnAroundTime TWENTY_FOUR_HOURS
-
FORTY_EIGHT_HOURS
public static final VendorServiceTurnAroundTime FORTY_EIGHT_HOURS
-
FOUR_DAYS
public static final VendorServiceTurnAroundTime FOUR_DAYS
-
FIVE_DAYS
public static final VendorServiceTurnAroundTime FIVE_DAYS
-
TEN_DAYS
public static final VendorServiceTurnAroundTime TEN_DAYS
-
-
Method Detail
-
values
public static VendorServiceTurnAroundTime[] 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 (VendorServiceTurnAroundTime c : VendorServiceTurnAroundTime.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VendorServiceTurnAroundTime 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
-
setValue
public void setValue(int value)
-
get
public static VendorServiceTurnAroundTime get(Integer value)
-
-