Enum Class ManageDataResultCode

java.lang.Object
java.lang.Enum<ManageDataResultCode>
org.stellar.sdk.xdr.ManageDataResultCode
All Implemented Interfaces:
Serializable, Comparable<ManageDataResultCode>, Constable

public enum ManageDataResultCode extends Enum<ManageDataResultCode>
ManageDataResultCode's original definition in the XDR file is:
 enum ManageDataResultCode
 {
     // codes considered as "success" for the operation
     MANAGE_DATA_SUCCESS = 0,
     // codes considered as "failure" for the operation
     MANAGE_DATA_NOT_SUPPORTED_YET =
         -1, // The network hasn't moved to this protocol change yet
     MANAGE_DATA_NAME_NOT_FOUND =
         -2, // Trying to remove a Data Entry that isn't there
     MANAGE_DATA_LOW_RESERVE = -3, // not enough funds to create a new Data Entry
     MANAGE_DATA_INVALID_NAME = -4 // Name not a valid string
 };