Back to project page android_sdk.
The source code is released under:
Copyright (c) 2012-2014 adjust GmbH, http://www.adjust.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softw...
If you think the Android project android_sdk 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.adjust.sdk; /* w w w . j a va2 s . c o m*/ public enum ActivityKind { UNKNOWN, SESSION, EVENT, REVENUE, REATTRIBUTION; public static ActivityKind fromString(String string) { if ("session".equals(string)) { return SESSION; } else if ("event".equals(string)) { return EVENT; } else if ("revenue".equals(string)) { return REVENUE; } else if ("reattribution".equals(string)) { return REATTRIBUTION; } else { return UNKNOWN; } } @Override public String toString() { switch(this) { case SESSION: return "session"; case EVENT: return "event"; case REVENUE: return "revenue"; case REATTRIBUTION: return "reattribution"; default: return "unknown"; } } }