Package com.iizix.device.settings
Enum Class Settings_iOS
- All Implemented Interfaces:
- INativeSetting,- Serializable,- Comparable<Settings_iOS>,- Constable
Native settings for iOS that are potentially openable on the client device using the 
IOpenNativeSettings interface. This interface is retrieved from the client session using IClientSessionGyro#getOpenNativeSettings(). The setting in question is then opened using the interface method IOpenNativeSettings.openNativeSettings(INativeSetting, IOpenSettingSuccess, IOpenSettingFailure).- Author:
- Christopher Mindus
- Nested Class Summary- Nested classes/interfaces inherited from class java.lang.Enum- Enum.EnumDesc<E extends Enum<E>>
- Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionSettings > General > About.Application Settings.Settings > Battery.Settings > Bluetooth.Settings > General > Date & Time.Settings > FaceTime.Settings > iCloud.Settings > General > Keyboard.Settings > General > Keyboard > Keyboards.Settings > General > Language & Region.Settings > Privacy > Location Services (in newer versions of iOS).Settings > Cellular or Mobile Data.Settings > Notes.Settings > Notifications.Settings > Phone.Settings > Photo & Camera.Settings > Privacy.Settings > General > Reset.Settings > Sounds > Ringtone.Settings > Siri & Search.Settings > General, or latest settings view.Settings > General > Software Update.Settings > Sounds & Haptics.Settings > iCloud > Manage Storage.Settings > App Store.Settings > Touch/Face ID & Passcode.Settings > Privacy > Tracking (iOS 14+).Settings > Wallet & Apple Pay (in older iOS called "Passbook").Settings > Wallpaper.Settings > Wi-Fi.
- Field SummaryFields- Fields inherited from interface com.iizix.device.settings.INativeSetting- TYPE_Android, TYPE_BOTH, TYPE_iOS
- Method SummaryModifier and TypeMethodDescriptionGets the internal setting name to use on the native client device.- int- getType()Checks if the setting is for Android, iOS or both.- static boolean- isValid- (INativeSetting setting) Verifies if a value is valid for iOS.- toString()The string representation of the enum as- "com.iizix.device.settings.Settings_Android[nativeOp]".- static Settings_iOSReturns the enum constant of this class with the specified name.- static Settings_iOS[]- values()Returns an array containing the constants of this enum class, in the order they are declared.- Methods inherited from class java.lang.Enum- clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf- Methods inherited from interface com.iizix.device.settings.INativeSetting- getNativeOp_Android
- Enum Constant Details- AboutSettings > General > About.
- AppSettingsApplication Settings.
- BatterySettings > Battery.
- BluetoothSettings > Bluetooth.
- ICloudSettings > iCloud.
- DateSettings > General > Date & Time.
- FacetimeSettings > FaceTime.
- KeyboardSettings > General > Keyboard.
- KeyboardsSettings > General > Keyboard > Keyboards.
- LocaleSettings > General > Language & Region.
- LocationsSettings > Privacy > Location Services (in newer versions of iOS).
- TrackingSettings > Privacy > Tracking (iOS 14+).
- MobileDataSettings > Cellular or Mobile Data.
- NotesSettings > Notes.
- NotificationsSettings > Notifications.
- WalletSettings > Wallet & Apple Pay (in older iOS called "Passbook").
- PhoneSettings > Phone.
- PhotosSettings > Photo & Camera.
- PrivacySettings > Privacy.
- ResetSettings > General > Reset.
- RingtoneSettings > Sounds > Ringtone.
- SearchSettings > Siri & Search.
- SettingsSettings > General, or latest settings view.
- SoundSettings > Sounds & Haptics.
- SoftwareUpdateSettings > General > Software Update.
- StorageSettings > iCloud > Manage Storage.
- StoreSettings > App Store.
- TouchSettings > Touch/Face ID & Passcode.
- WallpaperSettings > Wallpaper.
- WiFiSettings > Wi-Fi.
 
- Field Details- descriptionThe description in English.
 
- Method Details- valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- getTypepublic int getType()Checks if the setting is for Android, iOS or both.- Specified by:
- getTypein interface- INativeSetting
- Returns:
- The value INativeSetting.TYPE_iOS.
 
- getNativeOp_iOSGets the internal setting name to use on the native client device.- Specified by:
- getNativeOp_iOSin interface- INativeSetting
- Returns:
- An internal String value that should not be used.
 
- toStringThe string representation of the enum as- "com.iizix.device.settings.Settings_Android[nativeOp]".- Overrides:
- toStringin class- Enum<Settings_iOS>
- Returns:
- The string formatted as "com.iizix.device.settings.Settings_Android[nativeOp]".
 
- isValidVerifies if a value is valid for iOS.- Parameters:
- setting- The setting.
- Returns:
- The validity flag for iOS.