-
public final class AppleCriticalAlertOptions
A class that can be used to send apple's critical alert.
-
-
Field Summary
Fields Modifier and Type Field Description public final static double
DEFAULT_VOLUME
final String
name
final double
volume
-
Constructor Summary
Constructors Constructor Description AppleCriticalAlertOptions()
Constructor that builds an instance of this class using default valuesname={@value DEFAULT_NAME} and volume={@value DEFAULT_VOLUME} AppleCriticalAlertOptions(double volume)
Constructor that builds an instance of this class using default valuename={@value DEFAULT_NAME} and given volume. AppleCriticalAlertOptions(String name)
Constructor that builds an instance of this class using default valuevolume={@value DEFAULT_VOLUME} and given name. AppleCriticalAlertOptions(String name, double volume)
Constructor that builds an instance of this class using given name and volume.
-
Method Summary
-
-
Constructor Detail
-
AppleCriticalAlertOptions
AppleCriticalAlertOptions()
Constructor that builds an instance of this class using default valuesname={@value DEFAULT_NAME} and volume={@value DEFAULT_VOLUME}
-
AppleCriticalAlertOptions
AppleCriticalAlertOptions(double volume)
Constructor that builds an instance of this class using default valuename={@value DEFAULT_NAME} and given volume.- Parameters:
volume
- the volume for this option.
-
AppleCriticalAlertOptions
AppleCriticalAlertOptions(String name)
Constructor that builds an instance of this class using default valuevolume={@value DEFAULT_VOLUME} and given name.- Parameters:
name
- the name for this option.
-
AppleCriticalAlertOptions
AppleCriticalAlertOptions(String name, double volume)
Constructor that builds an instance of this class using given name and volume.- Parameters:
name
- the name for this option.volume
- the volume for this option.
-
-
-
-