// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.communication.actions; import java.io.Serializable; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; // Referenced classes of package com.olio.communication.actions: // Action public class WatchSettingsAction extends com.olio.communication.actions.Action implements Serializable { public static final class Action extends Enum { private static final Action $VALUES[]; public static final Action ANSWER_PHONE_CALL; public static final Action CANCEL_ALARM; public static final Action MAKE_BLE_DISCOVERABLE; public static final Action POWER_CYCLE_BLUETOOTH; public static final Action REJECT_PHONE_CALL; public static final Action RESET_BLUETOOTH; public static final Action TURN_BLUETOOTH_OFF; public static final Action TURN_BLUETOOTH_ON; public static final Action TURN_BLUETOOTH_ON_MAKE_BLUETOOTH3_VISIBLE; public static final Action TURN_OFF_DEVICE; public static Action valueOf(String s) { return (Action)Enum.valueOf(com/olio/communication/actions/WatchSettingsAction$Action, s); } public static Action[] values() { return (Action[])$VALUES.clone(); } static { TURN_BLUETOOTH_ON_MAKE_BLUETOOTH3_VISIBLE = new Action("TURN_BLUETOOTH_ON_MAKE_BLUETOOTH3_VISIBLE", 0); MAKE_BLE_DISCOVERABLE = new Action("MAKE_BLE_DISCOVERABLE", 1); TURN_BLUETOOTH_OFF = new Action("TURN_BLUETOOTH_OFF", 2); RESET_BLUETOOTH = new Action("RESET_BLUETOOTH", 3); POWER_CYCLE_BLUETOOTH = new Action("POWER_CYCLE_BLUETOOTH", 4); TURN_BLUETOOTH_ON = new Action("TURN_BLUETOOTH_ON", 5); CANCEL_ALARM = new Action("CANCEL_ALARM", 6); TURN_OFF_DEVICE = new Action("TURN_OFF_DEVICE", 7); ANSWER_PHONE_CALL = new Action("ANSWER_PHONE_CALL", 8); REJECT_PHONE_CALL = new Action("REJECT_PHONE_CALL", 9); $VALUES = (new Action[] { TURN_BLUETOOTH_ON_MAKE_BLUETOOTH3_VISIBLE, MAKE_BLE_DISCOVERABLE, TURN_BLUETOOTH_OFF, RESET_BLUETOOTH, POWER_CYCLE_BLUETOOTH, TURN_BLUETOOTH_ON, CANCEL_ALARM, TURN_OFF_DEVICE, ANSWER_PHONE_CALL, REJECT_PHONE_CALL }); } private Action(String s, int i) { super(s, i); } } private static final long serialVersionUID = 2343L; private Action action; public WatchSettingsAction() { } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } else { WatchSettingsAction watchsettingsaction = (WatchSettingsAction)obj; return (new EqualsBuilder()).appendSuper(super.equals(obj)).append(action, watchsettingsaction.action).isEquals(); } } public Action getAction() { return action; } public int hashCode() { return (new HashCodeBuilder(17, 37)).appendSuper(super.hashCode()).append(action).toHashCode(); } public void setAction(Action action1) { action = action1; } }