trait FormatCommons extends AnyRef
Various helper functions.
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- FormatCommons
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
expectHeader(in: BufferedReader, expectedHeader: String): Unit
- Attributes
- protected
- val fileToString: (File) ⇒ String
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
readMap[K, V](in: BufferedReader)(expectedHeader: String, s2k: (String) ⇒ K, s2v: (String) ⇒ V): Map[K, V]
- Attributes
- protected
-
def
readMappedPairs[K, V](in: BufferedReader)(expectedHeader: String, s2k: (String) ⇒ K, s2v: (K, String) ⇒ V): Traversable[(K, V)]
- Attributes
- protected
-
def
readPairs[K, V](in: BufferedReader)(expectedHeader: String, s2k: (String) ⇒ K, s2v: (String) ⇒ V): Traversable[(K, V)]
- Attributes
- protected
-
def
readSeq[T](in: BufferedReader)(expectedHeader: String, s2t: (String) ⇒ T): Seq[T]
- Attributes
- protected
-
def
readSize(in: BufferedReader): Int
- Attributes
- protected
- val stringToFile: (String) ⇒ File
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
writeHeader(out: Writer, header: String): Unit
- Attributes
- protected
-
def
writeMap[K, V](out: Writer)(header: String, m: Map[K, V], k2s: (K) ⇒ String, v2s: (V) ⇒ String, inlineVals: Boolean = true)(implicit ord: Ordering[K]): Unit
- Attributes
- protected
-
def
writePairs[K, V](out: Writer)(header: String, s: Seq[(K, V)], k2s: (K) ⇒ String, v2s: (V) ⇒ String, inlineVals: Boolean = true): Unit
- Attributes
- protected
-
def
writeSeq[T](out: Writer)(header: String, s: Seq[T], t2s: (T) ⇒ String): Unit
- Attributes
- protected
-
def
writeSize(out: Writer, n: Int): Unit
- Attributes
- protected