public static final EnumPreference<FtpTransferType> INSTANCE = create();
private static EnumPreference<FtpTransferType> create() {
String[] path = { LocatableGeneralPreferencesPage.PATH, "FTP" };
String key = "TransferType";
FtpTransferType def = FtpTransferType.Binary;
return ApplicationConfiguration.getPreferenceFactory().newEnumPreference(path, key, def, FtpTransferType.class);
}