public static final enum

FileUpload.State

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.gsma.services.rcs.upload.FileUpload.State

Class Overview

File upload state

Summary

Enum Values
FileUpload.State  ABORTED  Upload has been aborted  
FileUpload.State  FAILED  Upload has failed  
FileUpload.State  INITIATING  Initiating state  
FileUpload.State  STARTED  Upload is started  
FileUpload.State  TRANSFERRED  File has been transferred with success  
Public Methods
final int toInt()
Returns the value of this State as an integer.
final static FileUpload.State valueOf(int value)
Returns a State instance representing the specified integer value.
static FileUpload.State valueOf(String name)
final static State[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final FileUpload.State ABORTED

Upload has been aborted

public static final FileUpload.State FAILED

Upload has failed

public static final FileUpload.State INITIATING

Initiating state

public static final FileUpload.State STARTED

Upload is started

public static final FileUpload.State TRANSFERRED

File has been transferred with success

Public Methods

public final int toInt ()

Returns the value of this State as an integer.

Returns
  • integer value

public static final FileUpload.State valueOf (int value)

Returns a State instance representing the specified integer value.

Parameters
value the integer value
Returns
  • State instance

public static FileUpload.State valueOf (String name)

public static final State[] values ()