Back to project page sms-backup-plus.
The source code is released under:
Apache License
If you think the Android project sms-backup-plus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zegoggles.smssync.preferences; /*from w w w .j a v a2s. co m*/ public enum AddressStyle { NAME, NAME_AND_NUMBER, NUMBER; private static final String EMAIL_ADDRESS_STYLE = "email_address_style"; public static AddressStyle getEmailAddressStyle(Preferences preferences) { return preferences.getDefaultType(EMAIL_ADDRESS_STYLE, AddressStyle.class, AddressStyle.NAME); } }