A B C D E F G H I N O P R S T U V 
All Classes All Packages

A

accept(T, U) - Method in interface com.azure.android.core.util.BiConsumer
Performs the operation on the given two inputs.
addData(Object, Object) - Method in class com.azure.android.core.util.RequestContext
Adds a new immutable RequestContext object with the specified key-value pair to the existing RequestContext chain.
addValue(String) - Method in class com.azure.android.core.util.Header
Add a new value to the end of the Header.
AsyncStream<T> - Interface in com.azure.android.core.util
A sequence of elements that can be enumerated asynchronously.
AsyncStreamHandler<T> - Interface in com.azure.android.core.util
A type to asynchronously deliver the signals (element, error, completion) from a AsyncStream.
AzureException - Exception in com.azure.android.core.exception
The base Azure exception.
AzureException() - Constructor for exception com.azure.android.core.exception.AzureException
Initializes a new instance of the AzureException class.
AzureException(String) - Constructor for exception com.azure.android.core.exception.AzureException
Initializes a new instance of the AzureException class.
AzureException(String, Throwable) - Constructor for exception com.azure.android.core.exception.AzureException
Initializes a new instance of the AzureException class.
AzureException(Throwable) - Constructor for exception com.azure.android.core.exception.AzureException
Initializes a new instance of the AzureException class.

B

Base64Url - Class in com.azure.android.core.util
Encodes and decodes using Base64 URL encoding.
Base64Url(byte[]) - Constructor for class com.azure.android.core.util.Base64Url
Creates a new Base64Url object with the specified encoded bytes.
Base64Url(String) - Constructor for class com.azure.android.core.util.Base64Url
Creates a new Base64Url object with the specified encoded string.
Base64Util - Class in com.azure.android.core.util
Utility type exposing Base64 encoding and decoding methods.
BiConsumer<T,​U> - Interface in com.azure.android.core.util
Type representing an operation that accepts two input arguments.
byPage() - Method in interface com.azure.android.core.util.paging.PagedAsyncStreamCore
Gets AsyncStream that enables enumerating the pages asynchronously.
byPage(C) - Method in interface com.azure.android.core.util.paging.PagedAsyncStreamCore
Gets AsyncStream that enables enumerating the pages asynchronously, starting from the page with the given id startPageId.

C

call(I) - Method in interface com.azure.android.core.util.Function
Invokes the function.
cancel() - Method in class com.azure.android.core.util.CancellationToken
Communicates a request for cancellation.
CancellationToken - Class in com.azure.android.core.util
Type representing a token to cancel one or more operations.
CancellationToken() - Constructor for class com.azure.android.core.util.CancellationToken
 
com.azure.android.core.exception - package com.azure.android.core.exception
Package containing core exception types.
com.azure.android.core.util - package com.azure.android.core.util
Package containing core util types.
com.azure.android.core.util.paging - package com.azure.android.core.util.paging
Package containing paging abstraction.

D

DateTimeRfc1123 - Class in com.azure.android.core.util
Wrapper over org.threeten.bp.OffsetDateTime used for specifying RFC1123 format during serialization and deserialization.
DateTimeRfc1123(String) - Constructor for class com.azure.android.core.util.DateTimeRfc1123
Creates a new DateTimeRfc1123 object with the specified DateTime.
DateTimeRfc1123(OffsetDateTime) - Constructor for class com.azure.android.core.util.DateTimeRfc1123
Creates a new DateTimeRfc1123 object with the specified DateTime.
decode(byte[]) - Static method in class com.azure.android.core.util.Base64Util
Decodes a base64 encoded byte array.
decodedBytes() - Method in class com.azure.android.core.util.Base64Url
Decode the bytes and returns its value.
decodeString(String) - Static method in class com.azure.android.core.util.Base64Util
Decodes a base64 encoded string.
decodeURL(byte[]) - Static method in class com.azure.android.core.util.Base64Util
Decodes a byte array in base64 URL format.

E

empty() - Static method in class com.azure.android.core.util.Option
Returns an Option with null-value.
encode(byte[]) - Static method in class com.azure.android.core.util.Base64Url
Encodes a byte array into Base64Url encoded bytes.
encode(byte[]) - Static method in class com.azure.android.core.util.Base64Util
Encodes a byte array to base64.
encodedBytes() - Method in class com.azure.android.core.util.Base64Url
Returns the underlying encoded byte array.
encodeToString(byte[]) - Static method in class com.azure.android.core.util.Base64Util
Encodes a byte array to a base 64 string.
encodeURLWithoutPadding(byte[]) - Static method in class com.azure.android.core.util.Base64Util
Encodes a byte array to base64 URL format.
equals(Object) - Method in class com.azure.android.core.util.Base64Url
 
equals(Object) - Method in class com.azure.android.core.util.DateTimeRfc1123
 
equals(Object) - Method in class com.azure.android.core.util.ExpandableStringEnum
 
equals(Object) - Method in class com.azure.android.core.util.Option
Indicates whether some other object is "equal to" this Option.
equals(Object) - Method in class com.azure.android.core.util.UnixTime
 
ExpandableStringEnum<T extends ExpandableStringEnum<T>> - Class in com.azure.android.core.util
Base implementation for expandable, single string enums.
ExpandableStringEnum() - Constructor for class com.azure.android.core.util.ExpandableStringEnum
 

F

forEach(AsyncStreamHandler<T>) - Method in interface com.azure.android.core.util.AsyncStream
Enumerate the AsyncStream by signaling each element to the handler.onNext.
from(C) - Method in interface com.azure.android.core.util.paging.PagedAsyncStreamCore
Gets AsyncStream that enables enumerating the elements of pages asynchronously, starting from the page with the given id startPageId.
fromString(String, Class<T>) - Static method in class com.azure.android.core.util.ExpandableStringEnum
Creates an instance of the specific expandable string enum from a String.
Function<I,​O> - Interface in com.azure.android.core.util
The type representing a function that accept one input and produces a result.

G

getContinuationToken() - Method in interface com.azure.android.core.util.paging.Page
Gets the reference to the next page.
getData(Object) - Method in class com.azure.android.core.util.RequestContext
Scans the linked-list of RequestContext objects looking for one with the specified key.
getDateTime() - Method in class com.azure.android.core.util.DateTimeRfc1123
Returns the underlying DateTime.
getDateTime() - Method in class com.azure.android.core.util.UnixTime
Get the underlying DateTime.
getElements() - Method in interface com.azure.android.core.util.paging.Page
Gets an List of elements in the page.
getName() - Method in class com.azure.android.core.util.Header
Gets the header name.
getPage(String, BiConsumer<P, Throwable>) - Method in interface com.azure.android.core.util.paging.PagedAsyncStreamCore
Retrieve a page with given id pageId.
getValue() - Method in class com.azure.android.core.util.Header
Gets the value of this Header.
getValue() - Method in class com.azure.android.core.util.Option
Gets the value in the Option.
getValues() - Method in class com.azure.android.core.util.Header
Gets the comma separated value as an array.
getVersion() - Method in interface com.azure.android.core.util.ServiceVersion
Gets the string representation of the ServiceVersion

H

hashCode() - Method in class com.azure.android.core.util.Base64Url
 
hashCode() - Method in class com.azure.android.core.util.DateTimeRfc1123
 
hashCode() - Method in class com.azure.android.core.util.ExpandableStringEnum
 
hashCode() - Method in class com.azure.android.core.util.Option
Returns hash code of the value this Option is initialized with or -1 if in uninitialized state.
hashCode() - Method in class com.azure.android.core.util.UnixTime
 
Header - Class in com.azure.android.core.util
Represents a single header to be set on a request.
Header(String, String) - Constructor for class com.azure.android.core.util.Header
Create a Header instance using the provided name and value.

I

isCancellationRequested() - Method in class com.azure.android.core.util.CancellationToken
Gets whether cancellation has been requested for this token by calling CancellationToken.cancel().
isInitialized() - Method in class com.azure.android.core.util.Option
Return true if this instance is initialized with a null-value or non-null-value, otherwise false.

N

NONE - Static variable in class com.azure.android.core.util.CancellationToken
An empty CancellationToken that cannot be cancelled.
NONE - Static variable in class com.azure.android.core.util.RequestContext
Signifies that no data needs to be passed to the pipeline.

O

of(T) - Static method in class com.azure.android.core.util.Option
Returns an Option with the specified null-value or non-null-value.
onComplete() - Method in interface com.azure.android.core.util.AsyncStreamHandler
A terminal signal indicating that the stream terminated successfully.
onError(Throwable) - Method in interface com.azure.android.core.util.AsyncStreamHandler
A terminal signal indicating that the stream terminated due to an error.
onInit(CancellationToken) - Method in interface com.azure.android.core.util.AsyncStreamHandler
Invoked before initiating element retrieval from the stream.
onNext(T) - Method in interface com.azure.android.core.util.AsyncStreamHandler
The next element produced by the stream.
Option<T> - Class in com.azure.android.core.util
The Option type to describe tri-state.

P

Page<C,​T> - Interface in com.azure.android.core.util.paging
Represents a paginated response from the service.
PagedAsyncStreamCore<C,​T,​P extends Page<C,​T>> - Interface in com.azure.android.core.util.paging
A sequence of elements in pages that can be enumerated asynchronously.
Predicate<I> - Interface in com.azure.android.core.util
A type representing a predicate to test.

R

registerOnCancel(Runnable) - Method in class com.azure.android.core.util.CancellationToken
Registers a Runnable that will be called when this CancellationToken is canceled.
registerOnCancel(String, Runnable) - Method in class com.azure.android.core.util.CancellationToken
Registers a Runnable that will be called when this CancellationToken is canceled.
RequestContext - Class in com.azure.android.core.util
RequestContext offers a means of passing arbitrary data (key-value pairs) to pipeline policies.
RequestContext(Object, Object) - Constructor for class com.azure.android.core.util.RequestContext
Constructs a new RequestContext object.

S

ServiceResponseException - Exception in com.azure.android.core.exception
A runtime exception indicating service response failure caused by one of the following scenarios: The request was sent, but the client failed to understand the response.
ServiceResponseException(String) - Constructor for exception com.azure.android.core.exception.ServiceResponseException
Initializes a new instance of the ServiceResponseException class.
ServiceResponseException(String, Throwable) - Constructor for exception com.azure.android.core.exception.ServiceResponseException
Initializes a new instance of the ServiceResponseException class.
ServiceVersion - Interface in com.azure.android.core.util
A generic interface for sending service requests using the provided service version.

T

test(I) - Method in interface com.azure.android.core.util.Predicate
Evaluates this predicate on the given input.
toRfc1123String(OffsetDateTime) - Static method in class com.azure.android.core.util.DateTimeRfc1123
Convert the dateTime to date time string in RFC1123 format.
toString() - Method in class com.azure.android.core.util.Base64Url
 
toString() - Method in class com.azure.android.core.util.DateTimeRfc1123
 
toString() - Method in class com.azure.android.core.util.ExpandableStringEnum
 
toString() - Method in class com.azure.android.core.util.Header
Gets the String representation of the header.
toString() - Method in class com.azure.android.core.util.UnixTime
 

U

uninitialized() - Static method in class com.azure.android.core.util.Option
Returns an Option instance with no-value.
UnixTime - Class in com.azure.android.core.util
A wrapper over org.threeten.bp.OffsetDateTime used for specifying unix seconds format during serialization and deserialization.
UnixTime(long) - Constructor for class com.azure.android.core.util.UnixTime
Creates a UnixTime object with the specified DateTime.
UnixTime(OffsetDateTime) - Constructor for class com.azure.android.core.util.UnixTime
Creates aUnixTime object with the specified DateTime.
unregisterOnCancel(String) - Method in class com.azure.android.core.util.CancellationToken
Unregister the Runnable that was registered using CancellationToken.registerOnCancel(String, Runnable).

V

values(Class<T>) - Static method in class com.azure.android.core.util.ExpandableStringEnum
Gets a collection of all known values to an expandable string enum type.
A B C D E F G H I N O P R S T U V 
All Classes All Packages