Package com.adobe.versioncue.nativecomm
Interface IResult
-
public interface IResult- Since:
- Mar 9, 2006
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.Stringcall()NCTypeget(java.lang.String key)Return named result.booleangetBool(java.lang.String key)Return named result.byte[]getByteArray(java.lang.String key)Return named result.java.nio.ByteBuffergetBytes(java.lang.String key)Return named result.doublegetDouble(java.lang.String key)Return named result.intgetInt(java.lang.String key)Return named result.NCListgetList(java.lang.String key)Return named result.longgetLong(java.lang.String key)Return named result.NCMapgetMap(java.lang.String key)Return named result.java.lang.StringgetString(java.lang.String key)Return named result.INativeServiceprocessPool()Deprecated.useservice()insteadNCMapresults()Result NCMap objectINativeServiceservice()
-
-
-
Method Detail
-
processPool
@Deprecated INativeService processPool()
Deprecated.useservice()instead- Returns:
- associated INativeService
-
service
INativeService service()
- Returns:
- associated INativeService
-
call
java.lang.String call()
- Returns:
- NativeService call name
-
results
NCMap results()
Result NCMap object- Returns:
- Result NCMap object
-
get
NCType get(java.lang.String key)
Return named result.- Parameters:
key- the result name- Returns:
- the named result
-
getString
java.lang.String getString(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getBool
boolean getBool(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getDouble
double getDouble(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getInt
int getInt(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getLong
long getLong(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getByteArray
byte[] getByteArray(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getBytes
java.nio.ByteBuffer getBytes(java.lang.String key) throws BadMessageExceptionReturn named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getMap
NCMap getMap(java.lang.String key) throws BadMessageException
Return named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
getList
NCList getList(java.lang.String key) throws BadMessageException
Return named result.- Parameters:
key- the result name- Returns:
- the named result
- Throws:
BadMessageException- if the named result is not present or not of the correct type
-
-