Back to project page BluetoothSPP.
The source code is released under:
MIT License
If you think the Android project BluetoothSPP 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.outofjungle.bluetoothspp.app.models; /*from ww w.j a v a 2 s . co m*/ /** * Created by vvenkat on 6/3/14. */ public enum Writer { ANDROID, ARDUINO; @Override public String toString() { return super.toString().toLowerCase(); } }