Package net.dv8tion.jda.api.events.self
Class SelfUpdateMobileEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.self.GenericSelfUpdateEvent<Boolean>
-
- net.dv8tion.jda.api.events.self.SelfUpdateMobileEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<SelfUser,Boolean>
public class SelfUpdateMobileEvent extends GenericSelfUpdateEvent<Boolean>
Indicates that you login to your discord account with a mobile device for the first time. (client-only)Can be used to detect that your account was used with a mobile device.
Identifier:
mobile
-
-
Field Summary
Fields Modifier and Type Field Description static String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description SelfUpdateMobileEvent(JDA api, long responseNumber, boolean wasMobile)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
getNewValue()
The new valueBoolean
getOldValue()
The old valueboolean
wasMobile()
The old mobile status.-
Methods inherited from class net.dv8tion.jda.api.events.self.GenericSelfUpdateEvent
getEntity, getPropertyIdentifier, getSelfUser, toString
-
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getResponseNumber
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getResponseNumber
-
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
-
-
-
Field Detail
-
IDENTIFIER
public static final String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
wasMobile
public boolean wasMobile()
The old mobile status. Should always befalse
.- Returns:
- The mobile status.
-
getOldValue
@Nonnull public Boolean getOldValue()
Description copied from interface:UpdateEvent
The old value- Specified by:
getOldValue
in interfaceUpdateEvent<SelfUser,Boolean>
- Overrides:
getOldValue
in classGenericSelfUpdateEvent<Boolean>
- Returns:
- The old value
-
getNewValue
@Nonnull public Boolean getNewValue()
Description copied from interface:UpdateEvent
The new value- Specified by:
getNewValue
in interfaceUpdateEvent<SelfUser,Boolean>
- Overrides:
getNewValue
in classGenericSelfUpdateEvent<Boolean>
- Returns:
- The new value
-
-