public enum ExternalRepositoryCloudStatus extends Enum<ExternalRepositoryCloudStatus>
Enum Constant and Description |
---|
AUTHENTICATION_ERROR
Authentication error
|
DISCONNECTED
Disconnected
|
INITIAL_SYNC_ERROR
Initial sync error
|
OK
OK
|
SYNCING
Syncing
|
Modifier and Type | Method and Description |
---|---|
static ExternalRepositoryCloudStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalRepositoryCloudStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalRepositoryCloudStatus OK
public static final ExternalRepositoryCloudStatus SYNCING
public static final ExternalRepositoryCloudStatus AUTHENTICATION_ERROR
public static final ExternalRepositoryCloudStatus INITIAL_SYNC_ERROR
public static final ExternalRepositoryCloudStatus DISCONNECTED
public static ExternalRepositoryCloudStatus[] values()
for (ExternalRepositoryCloudStatus c : ExternalRepositoryCloudStatus.values()) System.out.println(c);
public static ExternalRepositoryCloudStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.