Class AtsListApplicationsRequestBuilder
- java.lang.Object
-
- com.stackone.stackone_client_java.models.operations.AtsListApplicationsRequestBuilder
-
public class AtsListApplicationsRequestBuilder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description AtsListApplicationsRequestBuilder(SDKConfiguration sdkConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AtsListApplicationsResponsecall()java.lang.Iterable<AtsListApplicationsResponse>callAsIterable()Returns an iterable that performs next page calls till no more pages are returned.java.util.stream.Stream<AtsListApplicationsResponse>callAsStream()Returns a stream that performs next page calls till no more pages are returned.AtsListApplicationsRequestBuilderrequest(AtsListApplicationsRequest request)AtsListApplicationsRequestBuilderretryConfig(RetryConfig retryConfig)AtsListApplicationsRequestBuilderretryConfig(java.util.Optional<RetryConfig> retryConfig)
-
-
-
Constructor Detail
-
AtsListApplicationsRequestBuilder
public AtsListApplicationsRequestBuilder(SDKConfiguration sdkConfiguration)
-
-
Method Detail
-
request
public AtsListApplicationsRequestBuilder request(AtsListApplicationsRequest request)
-
retryConfig
public AtsListApplicationsRequestBuilder retryConfig(RetryConfig retryConfig)
-
retryConfig
public AtsListApplicationsRequestBuilder retryConfig(java.util.Optional<RetryConfig> retryConfig)
-
call
public AtsListApplicationsResponse call() throws java.lang.Exception
- Throws:
java.lang.Exception
-
callAsIterable
public java.lang.Iterable<AtsListApplicationsResponse> callAsIterable()
Returns an iterable that performs next page calls till no more pages are returned.The returned iterable can be used in a for-each loop:
for (AtsListApplicationsResponse page : builder.callAsIterable()) { // Process each page }- Returns:
- An iterable that can be used to iterate through all pages
-
callAsStream
public java.util.stream.Stream<AtsListApplicationsResponse> callAsStream()
Returns a stream that performs next page calls till no more pages are returned.
-
-