Enumeration ImageSourceState
ImageSourceState
describes the state of ImageSourceAdapter
.
- JavaScript
- Android
- Objective-C
- Swift
- C++
enum EnumImageSourceState { /** The buffer of ImageSourceAdapter is temporarily empty. */ ISS_BUFFER_EMPTY = 0, /** The source of ImageSourceAdapter is empty. */ ISS_EXHAUSTED = 1 }
@Retention(RetentionPolicy.CLASS) public @interface EnumImageSourceState { /** The buffer of ImageSourceAdapter is temporarily empty. */ public static final int ISS_BUFFER_EMPTY = 0; /** The source of ImageSourceAdapter is empty. */ public static final int ISS_EXHAUSTED = 1; }
typedef NS_ENUM(NSInteger, DSImageSourceState) { /** The buffer of ImageSourceAdapter is temporarily empty. */ DSImageSourceStateBufferEmpty = 0, /** The source of ImageSourceAdapter is empty. */ DSImageSourceStateExhausted = 1 };
public enum ImageSourceState : Int { /** The buffer of ImageSourceAdapter is temporarily empty. */ bufferEmpty = 0 /** The source of ImageSourceAdapter is empty. */ exhausted = 1 };
typedef enum ImageSourceState { /** The buffer of ImageSourceAdapter is temporarily empty. */ ISS_BUFFER_EMPTY, /** The source of ImageSourceAdapter is empty. */ ISS_EXHAUSTED } ImageSourceState;