public static enum InvokeFunctionRequest.FnInvokeType extends Enum<InvokeFunctionRequest.FnInvokeType> implements BmcEnum
Indicates whether Oracle Functions should execute the request and return the result (‘sync’) of the execution, or whether Oracle Functions should return as soon as processing has begun (‘detached’) and leave result handling to the function.
Modifier and Type | Method and Description |
---|---|
static InvokeFunctionRequest.FnInvokeType |
create(String key) |
String |
getValue() |
static InvokeFunctionRequest.FnInvokeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvokeFunctionRequest.FnInvokeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvokeFunctionRequest.FnInvokeType Detached
public static final InvokeFunctionRequest.FnInvokeType Sync
public static InvokeFunctionRequest.FnInvokeType[] values()
for (InvokeFunctionRequest.FnInvokeType c : InvokeFunctionRequest.FnInvokeType.values()) System.out.println(c);
public static InvokeFunctionRequest.FnInvokeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static InvokeFunctionRequest.FnInvokeType create(String key)
Copyright © 2016–2024. All rights reserved.