DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
java.*andjavax.*scala.*- Third-party libraries (
org.*,com.*, etc) - Project classes (
org.apache.spark.*)
You can also use the IntelliJ import organizer plugin can organize imports for you. Use this configuration for the plugin:
| Code Block |
|---|
import java.*
import javax.*
import scala.*
import *
import org.apache.spark.*
|
Infix Methods
Don't use infix notation for methods that aren't operators. For example, instead of list map func, use list.map(func), or instead of string contains "foo", use string.contains("foo"). This is to improve familiarity to developers coming from other languages.
...