datai/docs/reference-code/com/sforce/soap/tooling/EncryptionState.java

78 lines
1.8 KiB
Java
Raw Permalink Normal View History

2026-01-22 10:52:30 +08:00
package com.sforce.soap.tooling;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public enum EncryptionState {
/**
* Enumeration : ENCRYPTION_DISABLED
*/
ENCRYPTION_DISABLED("ENCRYPTION_DISABLED"),
/**
* Enumeration : PROBABILISTIC_ENCRYPTION_PENDING
*/
PROBABILISTIC_ENCRYPTION_PENDING("PROBABILISTIC_ENCRYPTION_PENDING"),
/**
* Enumeration : PROBABILISTIC_ENCRYPTION_ENABLED
*/
PROBABILISTIC_ENCRYPTION_ENABLED("PROBABILISTIC_ENCRYPTION_ENABLED"),
/**
* Enumeration : CASE_SENSITIVE_DETERMINISTIC_ENCRYPTION_PENDING
*/
CASE_SENSITIVE_DETERMINISTIC_ENCRYPTION_PENDING("CASE_SENSITIVE_DETERMINISTIC_ENCRYPTION_PENDING"),
/**
* Enumeration : CASE_SENSITIVE_DETERMINISTIC_ENCRYPTION_ENABLED
*/
CASE_SENSITIVE_DETERMINISTIC_ENCRYPTION_ENABLED("CASE_SENSITIVE_DETERMINISTIC_ENCRYPTION_ENABLED"),
/**
* Enumeration : CASE_INSENSITIVE_DETERMINISTIC_ENCRYPTION_PENDING
*/
CASE_INSENSITIVE_DETERMINISTIC_ENCRYPTION_PENDING("CASE_INSENSITIVE_DETERMINISTIC_ENCRYPTION_PENDING"),
/**
* Enumeration : CASE_INSENSITIVE_DETERMINISTIC_ENCRYPTION_ENABLED
*/
CASE_INSENSITIVE_DETERMINISTIC_ENCRYPTION_ENABLED("CASE_INSENSITIVE_DETERMINISTIC_ENCRYPTION_ENABLED"),
;
public static Map<String, String> valuesToEnums;
static {
valuesToEnums = new HashMap<String, String>();
for (EncryptionState e : EnumSet.allOf(EncryptionState.class)) {
valuesToEnums.put(e.toString(), e.name());
}
}
private String value;
private EncryptionState(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}