Package

fm

common

Permalink

package common

Linear Supertypes
Implicits, ImplicitsBase, ImplicitsCollectionCompat, PlatformCompat, TypeSafeEqualsOps, AnyRefNullCheckOps, OrderingImplicits, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. common
  2. Implicits
  3. ImplicitsBase
  4. ImplicitsCollectionCompat
  5. PlatformCompat
  6. TypeSafeEqualsOps
  7. AnyRefNullCheckOps
  8. OrderingImplicits
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract class Base16 extends BaseEncoding

    Permalink
  2. abstract class Base64Impl extends BaseEncoding

    Permalink
  3. trait BaseEncoding extends AnyRef

    Permalink
  4. abstract class Bootstring extends AnyRef

    Permalink

    Bootstring encoding as defined in From: https://tools.ietf.org/html/rfc3492

  5. trait BuilderCompat[-A, +To] extends Builder[A, To] with GrowableCompat[A]

    Permalink

    Provides a compatibility layer between Scala 2.11/2.12 and 2.13/3.x

  6. final class ByteBufferInputStream extends InputStream

    Permalink

    A Simple InputStream wrapper around a ByteBuffer

  7. final class ByteBufferOutputStream extends OutputStream

    Permalink

    A Simple OutputStream wrapper around a ByteBuffer

  8. trait CodePointReader extends AnyRef

    Permalink

    Similar to Reader except for reading Unicode Code Points instead of Java Characters.

    Similar to Reader except for reading Unicode Code Points instead of Java Characters.

    See java.io.Reader for API descriptions. The behavior of this trait should mimic java.io.Reader.

  9. final class ColorPatternLayoutEncoder extends PatternLayoutEncoder

    Permalink

    A simple Logback extension to the PatternLayoutEncoder that adds simple coloring for WARN and ERROR levels

  10. final class ConcurrentHashMap[A, B] extends Map[A, B]

    Permalink

    EXPERIMENTAL - A Scala mutable map that wraps a java ConcurrentHashMap and allows null values

  11. final class ConcurrentHashSet[A] extends Set[A]

    Permalink

    EXPERIMENTAL - A Scala mutable Set based on ConcurrentHashMap

  12. final class Crypto extends Logging

    Permalink

    A Simple Crypto Class

    A Simple Crypto Class

    NOTE: Use at your own risk. We make no claim that any of this Crypto code is correct.

  13. final case class DummyResource[A](a: A) extends Resource[A] with Product with Serializable

    Permalink

    A Dummy Resource that does nothing

  14. final class FlatMappedResource[A, B] extends Resource[B]

    Permalink

    For Resource.flatMap

  15. final class GrowableByteArray extends OutputStream

    Permalink

    Like java.io.ByteArrayOutputStream but exposes the internal Array

  16. trait GrowableCompat[-A] extends Growable[A]

    Permalink

    Provides a compatibility layer between Scala 2.11/2.12 and 2.13/3.x

  17. final class IP extends AnyVal with Ordered[IP] with IPOrSubnet

    Permalink

    Simple Wrapper around an IPv4 Address

  18. sealed trait IPMap[T] extends AnyRef

    Permalink
  19. final class IPMapImmutable[T] extends IPMap[T]

    Permalink
  20. final class IPMapMutable[T] extends IPMap[T] with BuilderCompat[(IPOrSubnet, T), IPMapImmutable[T]]

    Permalink
  21. trait IPOrSubnet extends Any

    Permalink
  22. sealed trait IPSet extends AnyRef

    Permalink
  23. final class IPSetImmutable extends IPSet

    Permalink
  24. final class IPSetMutable extends IPSet with BuilderCompat[IPOrSubnet, IPSetImmutable]

    Permalink
  25. final case class IPSubnet(ip: IP, bits: Int) extends IPOrSubnet with Product with Serializable

    Permalink
  26. final case class IPSubnets(subnets: Vector[IPSubnet]) extends Product with Serializable

    Permalink
  27. final class ImmutableArray[+A] extends IndexedSeq[A] with IndexedSeqOptimized[A, ImmutableArray[A]]

    Permalink
  28. final class ImmutableArrayBuilder[A] extends Builder[A, ImmutableArray[A]]

    Permalink
  29. final case class ImmutableDate(millis: Long) extends Ordered[ImmutableDate] with Product with Serializable

    Permalink

    Represents an immutable java.util.Date

    Represents an immutable java.util.Date

    This provides an immutable milliseconds since epoch representation of a date when it might be a mismatch to use the newer java.time.Instance (which represents things as nanoseconds since or before epoch)

    NOTE: NOT extending AnyVal so that nulls still work (just like with java.util.Date)

  30. trait Implicits extends ImplicitsBase

    Permalink
  31. trait ImplicitsBase extends OrderingImplicits with AnyRefNullCheckOps with TypeSafeEqualsOps with PlatformCompat with ImplicitsCollectionCompat

    Permalink

    These are the Implicits that are shared between both the JVM and JS Implicits trait/object

    These are the Implicits that are shared between both the JVM and JS Implicits trait/object

    Attributes
    protected
  32. trait ImplicitsCollectionCompat extends AnyRef

    Permalink
    Attributes
    protected
  33. trait IndexedSeqProxy[A] extends AnyRef

    Permalink
  34. implicit class InputStreamCompat extends AnyRef

    Permalink
    Definition Classes
    PlatformCompat
  35. final case class InputStreamResource(resource: Resource[InputStream], fileName: String = "", autoDecompress: Boolean = true, autoBuffer: Boolean = true) extends Resource[InputStream] with Logging with Product with Serializable

    Permalink
  36. type Instant = java.time.Instant

    Permalink

    For Scala.js Instant is a dummy type but for the JVM we can use the native java.time.Instant

  37. final case class Interner[T <: AnyRef]() extends Product with Serializable

    Permalink

    Wraper around Guava's Interner class.

    Wraper around Guava's Interner class.

    Originally I had a generic Intern object that had a map of Class[_] to Guava Interner but that relies on a correct implementation of equals which can make it error prone. For Example an Option[Char] can == an Option[Int]. So instead you have to be explicit about creating an Interner.

  38. abstract class InvalidCharFilterReader extends FilterReader with Logging

    Permalink
  39. final case class InvalidIPException(msg: String) extends IllegalArgumentException with Product with Serializable

    Permalink
  40. trait IterableProxy[A] extends AnyRef

    Permalink
  41. final class JavaConcurrentHashSet[A] extends Set[A]

    Permalink

    EXPERIMENTAL - A Java Set based on ConcurrentHashMap

  42. type LocalDate = java.time.LocalDate

    Permalink

    For Scala.js LocalDate is a dummy type but for the JVM we can use the native java.time.LocalDate

  43. trait Logger extends AnyRef

    Permalink
  44. trait Logging extends AnyRef

    Permalink

    This can be extended for basic logging functionality

  45. final case class LoggingCaptureConfig(logger: org.slf4j.Logger, pattern: String, file: File, overwrite: Boolean) extends Product with Serializable

    Permalink
  46. trait MapProxy[K, V] extends AnyRef

    Permalink
  47. final class MappedResource[A, B] extends Resource[B]

    Permalink

    For Resource.map

  48. final class MessageCrypto extends AnyRef

    Permalink

    Compatible with the Rails MessageEncryptor using 'aes-256-cbc' and MessageVerifier using 'sha1' when working with *String* values.

    Compatible with the Rails MessageEncryptor using 'aes-256-cbc' and MessageVerifier using 'sha1' when working with *String* values.

    Also compatible with the custom MessageCrypto which marshalls values as JSON instead of using the ruby Marshal.dump and Marshal.load. Use json=true to dump using JSON.

    MessageEncryptor uses Marshal.dump and Marshal.load on whatever values you are trying to encrypt/sign. A subset of Marshal.dump and Marshal.load have been implemented to support String values.

    NOTE: This is a legacy class that was created when we switched from Rails to Scala. It is still used in a few places but probably needs to be refactored to remove the old Ruby marshalling stuff.

  49. final class MultiReadOnlySeekableByteChannel extends SeekableByteChannel

    Permalink

    Takes multiple SeekableByteChannel instances and turns them into a single virtual one.

    Takes multiple SeekableByteChannel instances and turns them into a single virtual one.

    This is used for reading multi-part 7 Zip archives via commons-compress where we just need to concatenate all the parts of the 7 Zip archive into a single SeekableByteChannel which can then be used with the commons-compress SevenZFile class.

  50. final class MultiUseResource[+A] extends Resource[A]

    Permalink

    A Resource that can be used multiple times (e.g.

    A Resource that can be used multiple times (e.g. opening an InputStream or Reader for a File)

  51. abstract class OptionCacheBase extends AnyRef

    Permalink
    Attributes
    protected
  52. trait OrderingImplicits extends AnyRef

    Permalink

    scala.math.Ordering only goes up to Tuple9

  53. final case class OutputStreamResource(resource: Resource[OutputStream], fileName: String = "", autoCompress: Boolean = true, compressionLevel: Int = Deflater.BEST_SPEED, buffered: Boolean = true, internalArchiveFileName: Option[String] = None) extends Resource[OutputStream] with Product with Serializable

    Permalink
  54. trait PlatformCompat extends AnyRef

    Permalink
  55. final class PriorityTaskRunner extends TaskRunnerBase

    Permalink

    Similar to a TaskRunner but allows you to pass in a priority value such that lower priority tasks will execute before higher priority tasks.

  56. final case class ProgressStats(dotPer: Long = 1000L, statsPer: Long = 25000L, logFinalStats: Boolean = false) extends Logging with Product with Serializable

    Permalink
  57. final class QueryParams extends AnyRef

    Permalink

    Represents immutable query parameters from a query string (e.g.

    Represents immutable query parameters from a query string (e.g. "?foo=bar&asd=qwe").

    This class distinguishes between 3 different types of values for a key:

    • null - "?foo"
    • blank - "?foo="
    • non-blank - "?foo=bar"
  58. final class QueryParamsBuilder extends BuilderCompat[(String, String), QueryParams]

    Permalink
  59. final class ReaderCodePointReader extends CodePointReader

    Permalink
  60. abstract class ReloadableFileResource[T] extends ReloadableResource[T]

    Permalink
  61. abstract class ReloadableResource[T] extends Logging

    Permalink
  62. trait Resource[+A] extends AnyRef

    Permalink

    An Automatically Managed Resource that can either be used once (e.g.

    An Automatically Managed Resource that can either be used once (e.g. reading an input stream) or multiple times (e.g. reading a file).

    The purpose of Resource is two-fold: 1 - To automatically handle closing a resource after it is done being used. 2 - To abstract the fact that some resources can be read multiple times while other resources are one-time use.

  63. final class ScheduledFuture[T] extends Future[T] with ScheduledTask

    Permalink
  64. trait ScheduledTask extends AnyRef

    Permalink
  65. final case class ScheduledTaskRunner(name: String, executor: ScheduledThreadPoolExecutor) extends TaskRunnerNonPriority with Product with Serializable

    Permalink
    Annotations
    @implicitNotFound( ... )
  66. trait SeqProxy[A] extends AnyRef

    Permalink

    This is a replacement for the deprecated scala.collection.SeqProxy.

    This is a replacement for the deprecated scala.collection.SeqProxy.

    This doesn't implement Seq[A] like the original SeqProxy but instead just provides an implicit conversion from this trait into a Seq[A] which then gives you all the Seq functionality

  67. trait Serializer[T] extends AnyRef

    Permalink

    This is here so that LazySeq can be split out into it's own project.

    This is here so that LazySeq can be split out into it's own project.

    Some implementations are still in our internal Util package for now until we get a chance to refactor and possible merge with our fm-serializer project.

  68. trait SetProxy[A] extends AnyRef

    Permalink
  69. final class SingleUseResource[+A] extends Resource[A]

    Permalink

    A Resource that can only be used once (e.g.

    A Resource that can only be used once (e.g. reading an InputStream)

  70. class StacklessException extends Exception

    Permalink
  71. class StacklessThrowable extends Throwable

    Permalink
  72. trait StringEscapeUtilsBase extends AnyRef

    Permalink
    Attributes
    protected
  73. final class TaskRunner extends TaskRunnerNonPriority

    Permalink
  74. abstract class TaskRunnerBase extends Closeable with Logging

    Permalink
  75. final class TaskRunnerBuilder extends AnyRef

    Permalink
  76. abstract class TaskRunnerNonPriority extends TaskRunnerBase

    Permalink
  77. class ThreadLocalHashMap[K, V] extends AnyRef

    Permalink

    Wraps a Scala mutable.HashMap inside of a ThreadLocal and exposes some simple operations.

    Wraps a Scala mutable.HashMap inside of a ThreadLocal and exposes some simple operations.

    The initial use case of this is for caching NumberFormat instances by Locale. This can be accomplished by overriding the initialValue method and just calling the apply() method with the Locale.

    K

    The HashMap Key

    V

    The HashMap Value

  78. trait TraversableOnce[+A] extends Any

    Permalink

    A stripped down scala.collection.TraversableOnce that can be used as the the basis for collections implemented only via a foreach method and for implicit rich wrappers that can be implemented only in terms of a foreach method.

    A stripped down scala.collection.TraversableOnce that can be used as the the basis for collections implemented only via a foreach method and for implicit rich wrappers that can be implemented only in terms of a foreach method.

    Several of our Scala libraries relied on the pre Scala 2.13 TraversableOnce as the base trait for its implementation (e.g. fm.lazyseq.LazySeq) or for rich wrappers (e.g. fm.common.RichTraversableOnce and fm.fastutil) where we primarily need just a foreach method. Starting in Scala 2.13 the built-in scala.collection.TraversableOnce is now a deprecated alias for IterableOnce which relies on an Iterator which we cannot always provide (e.g. fm.lazyseq.LazySeq).

  79. trait TraversableOnceAdapters extends AnyRef

    Permalink
  80. trait TraversableProxy[A] extends AnyRef

    Permalink
  81. type URI = java.net.URI

    Permalink

    A type alias for java.net.URI

  82. type URL = java.net.URL

    Permalink

    A type alias for java.net.URL

  83. final case class UUID(timeAndCounter: Long, nodeIdAndRandom: Long) extends Ordered[UUID] with Product with Serializable

    Permalink

    A custom UUID implementation (not to be confused with java.util.UUID or RFC4122 implementations) that allows natural sorting by timestamp based on the string or numeric representation.

    A custom UUID implementation (not to be confused with java.util.UUID or RFC4122 implementations) that allows natural sorting by timestamp based on the string or numeric representation.

    The UUID consists of 16 bytes (128 bits) broken up into 2 longs:

    timeAndCounter: {6-Byte Millis since epoch}{2-Byte Counter} nodeIdAndRandom: {2-Byte Node ID}{6-Byte Random Number}

    The "pretty" hex encoded representation is: {6-byte millis since epoch}-{2-byte-counter}-{2-byte-optional-node-id}-{4-byte-random}

    Example: 015247f01787-9740-85e0-3e9672a8dfa2

  84. abstract class UUIDFactory[T <: UUIDWrapper[T]] extends AnyRef

    Permalink

    This goes along with the UUIDWrapper

    This goes along with the UUIDWrapper

    See documentation of UUIDWrapper for the intended usage of this class

  85. trait UUIDWrapper[T <: UUIDWrapper[T]] extends Ordered[T]

    Permalink

    An UUID wrapper class that allow you to define custom types that represent an UUID.

    An UUID wrapper class that allow you to define custom types that represent an UUID.

    The intended usage pattern is something like:

    object UserId extends UUIDFactory[UserId](new UserId(_))
    final class UserId(val uuid: UUID) extends UUIDWrapper[UserId]

    This allows you to then reference UserId instead of UUID and to have methods that take a strongly typed UserId instead of an UUID (which could represent something other than a User id)

    Note: The class that extends this should also extends AnyVal so that serialization will just pass through to the underlying uuid

  86. final class UncloseableInputStream extends FilterInputStream

    Permalink

    Wraps an InputStream and makes the close() method do nothing

  87. final class UncloseableOutputStream extends FilterOutputStream

    Permalink

    Wraps an OutputStream and makes the close() method do nothing

  88. trait UnicodeNormalizationBase extends AnyRef

    Permalink
    Attributes
    protected
  89. abstract class UserFriendlyException extends Exception

    Permalink
  90. abstract class WithFilterCompat[+A, +CC[_]] extends AnyRef

    Permalink

    Provides a compatibility layer between Scala 2.11/2.12 and 2.13/3.x

Value Members

  1. object ASCIIUtil

    Permalink
  2. object ArrayUtils

    Permalink
  3. object Base16 extends Base16

    Permalink
  4. object Base16Lower extends Base16

    Permalink
  5. object Base16Upper extends Base16

    Permalink
  6. object Base58 extends BaseEncoding

    Permalink

    Base58 is a way to encode Bitcoin addresses (or arbitrary data) as alphanumeric strings.

    Base58 is a way to encode Bitcoin addresses (or arbitrary data) as alphanumeric strings.

    Note that this is not the same base58 as used by Flickr, which you may find referenced around the Internet.

    You may want to consider working with PrefixedChecksummedBytes instead, which adds support for testing the prefix and suffix bytes commonly found in addresses.

    Satoshi explains: why base-58 instead of standard base-64 encoding?

    • Don't want 0OIl characters that look the same in some fonts and could be used to create visually identical looking account numbers.
    • A string with non-alphanumeric characters is not as easily accepted as an account number.
    • E-mail usually won't line-break if there's no punctuation to break at.
    • Doubleclicking selects the whole number as one word if it's all alphanumeric.

    However, note that the encoding/decoding runs in O(n²) time, so it is not useful for large data.

    The basic idea of the encoding is to treat the data bytes as a large number represented using base-256 digits, convert the number to be represented using base-58 digits, preserve the exact number of leading zeros (which are otherwise lost during the mathematical operations on the numbers), and finally represent the resulting base-58 digits as alphanumeric ASCII characters.

  7. object Base64 extends BaseEncoding

    Permalink

    Base64 encoding/decoding methods.

    Base64 encoding/decoding methods.

    Note: This will decode normal Base64 and the modified Base64 for URL variant. If you don't want this behavior then use Base64Strict or Base64URL directly.

  8. object Base64Strict extends Base64Impl

    Permalink
  9. object Base64URL extends Base64Impl

    Permalink
  10. object BitUtils

    Permalink
  11. object BuilderCompat

    Permalink
  12. object ByteBufferInputStream

    Permalink
  13. object ByteBufferUtil

    Permalink
  14. object CharsetUtil

    Permalink
  15. object ClassUtil extends Logging

    Permalink

    This contains utility methods for scanning Classes or Files on the classpath.

    This contains utility methods for scanning Classes or Files on the classpath.

    Originally we used the classpath scanning functionality in the Spring Framework and then later switched to the Reflections library (https://code.google.com/p/reflections/) to avoid the dependency on Spring. At some point we ran into issues with the Reflections library not properly detecting classes so I ended up writing this as a replacement.

  16. object CodePointReader

    Permalink
  17. object Crypto

    Permalink

    NOTE: Use at your own risk.

    NOTE: Use at your own risk. We make no claim that any of this Crypto code is correct.

  18. object DigestUtils

    Permalink

    MD5/SHA1/SHA256 Helpers

  19. object FileOutputStreamResource

    Permalink
  20. object FileUtil extends Logging

    Permalink
  21. object GrowableCompat

    Permalink
  22. object IOUtils

    Permalink

    Collection of IO Utilities.

    Collection of IO Utilities. Some implemented via Apache Commons IO

  23. object IP

    Permalink

    Helpers for parsing and working with IPv4 addresses

  24. object IPMap

    Permalink
  25. object IPMapImmutable

    Permalink
  26. object IPMapMutable

    Permalink
  27. object IPOrSubnet

    Permalink
  28. object IPSet

    Permalink
  29. object IPSetImmutable

    Permalink
  30. object IPSetMutable

    Permalink
  31. object IPSubnet extends Serializable

    Permalink
  32. object IPSubnets extends Serializable

    Permalink
  33. object ImmutableArray

    Permalink
  34. object ImmutableDate extends Serializable

    Permalink
  35. object Implicits extends Implicits

    Permalink
  36. object IndexedSeqProxy

    Permalink
  37. object InputStreamResource extends Serializable

    Permalink
  38. object IntegerCacheUtil

    Permalink

    A helper for determining the java.lang.Integer.IntegerCache.high value (controlled by -XX:AutoBoxCacheMax)

    A helper for determining the java.lang.Integer.IntegerCache.high value (controlled by -XX:AutoBoxCacheMax)

    Originally from fm-serializer

    Attributes
    protected
  39. object IterableProxy

    Permalink
  40. object JavaConverters extends DecorateAsJava with DecorateAsScala

    Permalink
  41. object Logger

    Permalink
  42. object Logging

    Permalink

    This has SLF4J/Logback Helpers that depend on SLF4j/Logback

    This has SLF4J/Logback Helpers that depend on SLF4j/Logback

    TODO: Clean this up!!

  43. object MapProxy

    Permalink
  44. object MessageCrypto

    Permalink
  45. object MultiReadOnlySeekableByteChannel

    Permalink
  46. object MultiUseResource

    Permalink
  47. object Normalize

    Permalink
  48. object OptionCache extends OptionCacheBase

    Permalink

    Provides cached instances of Boolean/Char/Byte/Int/Long wrapped in Scala's Option type to avoid boxing and allocations for commonly used values.

    Provides cached instances of Boolean/Char/Byte/Int/Long wrapped in Scala's Option type to avoid boxing and allocations for commonly used values. Similar to how the JDK Integer cache works.

    Caching behavior per type:

    Boolean - true/false cached Byte - All bytes cached (0 to 255) Char - All ASCII chars cached Int - Defaults to -XX:AutoBoxCacheMax range, can override with fm.common.IntegerCache.low/fm.common.IntegerCache.high properties Long - Defaults to -XX:AutoBoxCacheMax range, can override with fm.common.IntegerCache.low/fm.common.IntegerCache.high properties

  49. object OrderingImplicits extends OrderingImplicits

    Permalink
  50. object OutputStreamResource extends Serializable

    Permalink
  51. object PriorityTaskRunner extends Logging

    Permalink
  52. object ProgressStats extends Serializable

    Permalink
  53. object Punycode extends Bootstring

    Permalink

    Punycode as defined in From: https://tools.ietf.org/html/rfc3492

  54. object QueryParams

    Permalink
  55. object ReaderCodePointReader

    Permalink
  56. object ReloadableResource

    Permalink
  57. object Resource

    Permalink
  58. object ScheduledFuture

    Permalink
  59. object ScheduledTask

    Permalink
  60. object ScheduledTaskRunner extends Serializable

    Permalink
  61. object SeqProxy

    Permalink
  62. object Serializer

    Permalink

    Implicits that go along with the Serializer trait

  63. object Service

    Permalink
  64. object SetProxy

    Permalink
  65. object SevenZipUtils

    Permalink
  66. object SingleUseResource

    Permalink
  67. object Snappy

    Permalink
  68. object StringEscapeUtils extends StringEscapeUtilsBase

    Permalink
  69. object TaskRunner extends Logging

    Permalink
  70. object TaskRunnerBase extends Logging

    Permalink
  71. object TaskRunnerBuilder

    Permalink
  72. object TraversableOnce extends TraversableOnceAdapters

    Permalink
  73. object TraversableOnceAdapters

    Permalink
  74. object TraversableProxy

    Permalink
  75. implicit def Tuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)]

    Permalink
    Definition Classes
    OrderingImplicits
  76. implicit def Tuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)]

    Permalink
    Definition Classes
    OrderingImplicits
  77. implicit def Tuple12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)]

    Permalink
    Definition Classes
    OrderingImplicits
  78. implicit def Tuple13[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)]

    Permalink
    Definition Classes
    OrderingImplicits
  79. implicit def Tuple14[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)]

    Permalink
    Definition Classes
    OrderingImplicits
  80. implicit def Tuple15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14], ord15: Ordering[T15]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)]

    Permalink
    Definition Classes
    OrderingImplicits
  81. implicit def Tuple16[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14], ord15: Ordering[T15], ord16: Ordering[T16]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)]

    Permalink
    Definition Classes
    OrderingImplicits
  82. implicit def Tuple17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14], ord15: Ordering[T15], ord16: Ordering[T16], ord17: Ordering[T17]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17)]

    Permalink
    Definition Classes
    OrderingImplicits
  83. implicit def Tuple18[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14], ord15: Ordering[T15], ord16: Ordering[T16], ord17: Ordering[T17], ord18: Ordering[T18]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18)]

    Permalink
    Definition Classes
    OrderingImplicits
  84. implicit def Tuple19[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14], ord15: Ordering[T15], ord16: Ordering[T16], ord17: Ordering[T17], ord18: Ordering[T18], ord19: Ordering[T19]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19)]

    Permalink
    Definition Classes
    OrderingImplicits
  85. implicit def Tuple20[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20](implicit ord1: Ordering[T1], ord2: Ordering[T2], ord3: Ordering[T3], ord4: Ordering[T4], ord5: Ordering[T5], ord6: Ordering[T6], ord7: Ordering[T7], ord8: Ordering[T8], ord9: Ordering[T9], ord10: Ordering[T10], ord11: Ordering[T11], ord12: Ordering[T12], ord13: Ordering[T13], ord14: Ordering[T14], ord15: Ordering[T15], ord16: Ordering[T16], ord17: Ordering[T17], ord18: Ordering[T18], ord19: Ordering[T19], ord20: Ordering[T20]): Ordering[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20)]

    Permalink
    Definition Classes
    OrderingImplicits
  86. object URI extends Serializable

    Permalink

    Simple wrappers for the java.net.URI constructors

  87. object URL extends Serializable

    Permalink

    Simple wrappers for the java.net.URL constructors

  88. object UTF_8_BOM extends Charset

    Permalink

    This is a marker Charset that is used to write out UTF-8 BOM encoding in OutputStreamResource

    This is a marker Charset that is used to write out UTF-8 BOM encoding in OutputStreamResource

    Originally I attempted to have the Charset directly encode the BOM (like the UTF-16 Charsets) but ran into problems with not being able to call into protected methods of the UTF-8 Charset implementation and did not want to copy/paste a bunch of code and/or implement a bunch of hacks to make it work properly.

  89. object UUID extends Serializable

    Permalink
  90. object UUIDWrapper

    Permalink
  91. object UncloseableInputStream

    Permalink
  92. object UncloseableOutputStream

    Permalink
  93. object UnicodeNormalization extends UnicodeNormalizationBase

    Permalink
  94. object UnitResource extends Resource[Unit]

    Permalink

    An empty resource

  95. object UserFriendlyException extends Serializable

    Permalink
  96. object Util extends Logging

    Permalink
  97. object WithFilterCompat

    Permalink
  98. object XMLUtil

    Permalink
  99. object ZStandard

    Permalink
  100. implicit def bigDecimalOrdering: Ordering[BigDecimal]

    Permalink
    Definition Classes
    ImplicitsBase
  101. implicit def bigIntegerOrdering: Ordering[BigInteger]

    Permalink
    Definition Classes
    ImplicitsBase
  102. package rich

    Permalink
  103. implicit def toAnyRefNullChecks[A <: AnyRef](a: A): AnyRefNullChecks[A]

    Permalink
    Definition Classes
    AnyRefNullCheckOps
  104. implicit def toRichAnyRef[A <: AnyRef](ref: A): RichAnyRef[A]

    Permalink
    Definition Classes
    ImplicitsBase
  105. implicit def toRichAtomicInteger(int: AtomicInteger): RichAtomicInteger

    Permalink
    Definition Classes
    ImplicitsBase
  106. implicit def toRichAtomicLong(long: AtomicLong): RichAtomicLong

    Permalink
    Definition Classes
    ImplicitsBase
  107. implicit def toRichAwait[V](await: Await.type): RichAwait

    Permalink
    Definition Classes
    Implicits
  108. implicit def toRichBigDecimal(d: BigDecimal): RichBigDecimal

    Permalink
    Definition Classes
    ImplicitsBase
  109. implicit def toRichBigDecimal(d: BigDecimal): RichBigDecimal

    Permalink
    Definition Classes
    ImplicitsBase
  110. implicit def toRichBigInteger(i: BigInt): RichBigInteger

    Permalink
    Definition Classes
    ImplicitsBase
  111. implicit def toRichBigInteger(i: BigInteger): RichBigInteger

    Permalink
    Definition Classes
    ImplicitsBase
  112. implicit def toRichBooleanOption(opt: Option[Boolean]): RichBooleanOption

    Permalink
    Definition Classes
    ImplicitsBase
  113. implicit def toRichChar(ch: Char): RichChar

    Permalink
    Definition Classes
    ImplicitsBase
  114. implicit def toRichCharOption(opt: Option[Char]): RichCharOption

    Permalink
    Definition Classes
    ImplicitsBase
  115. implicit def toRichCharSequence(s: CharSequence): RichCharSequence

    Permalink
    Definition Classes
    ImplicitsBase
  116. implicit def toRichConcurrentMap[K, V](m: ConcurrentMap[K, V]): RichConcurrentMap[K, V]

    Permalink
    Definition Classes
    ImplicitsBase
  117. implicit def toRichFile(f: File): RichFile

    Permalink
    Definition Classes
    Implicits
  118. implicit def toRichGrowable[A](growable: Growable[A]): RichGrowable[A]

    Permalink
    Definition Classes
    ImplicitsBase
  119. implicit def toRichImmutableArray[A](arr: ImmutableArray[A]): RichImmutableArray[A]

    Permalink
    Definition Classes
    Implicits
  120. implicit def toRichIndexedSeq[T](t: IndexedSeq[T]): RichIndexedSeq[T]

    Permalink
    Definition Classes
    ImplicitsBase
  121. implicit def toRichInputStream(is: InputStream): RichInputStream

    Permalink
    Definition Classes
    Implicits
  122. implicit def toRichInstant(instant: Instant): RichInstant

    Permalink
    Definition Classes
    ImplicitsBase
  123. implicit def toRichIntOption(opt: Option[Int]): RichIntOption

    Permalink
    Definition Classes
    ImplicitsBase
  124. implicit def toRichIterable[A](col: Iterable[A]): RichIterable[A]

    Permalink
    Definition Classes
    ImplicitsBase
  125. implicit def toRichJVMString(s: String): RichJVMString

    Permalink
    Definition Classes
    Implicits
  126. implicit def toRichJavaDuration(duration: Duration): RichJavaDuration

    Permalink
    Definition Classes
    ImplicitsBase
  127. implicit def toRichLocalDate(date: LocalDate): RichLocalDate

    Permalink
    Definition Classes
    ImplicitsBase
  128. implicit def toRichLocale(locale: Locale): RichLocale

    Permalink
    Definition Classes
    Implicits
  129. implicit def toRichLongOption(opt: Option[Long]): RichLongOption

    Permalink
    Definition Classes
    ImplicitsBase
  130. implicit final def toRichMap[A, B, This <: MapLike[A, B, This] with Map[A, B]](m: MapLike[A, B, This]): RichMap[A, B, This]

    Permalink
    Definition Classes
    ImplicitsCollectionCompat
  131. implicit def toRichOption[T](opt: Option[T]): RichOption[T]

    Permalink
    Definition Classes
    ImplicitsBase
  132. implicit def toRichOptional[T](opt: Optional[T]): RichOptional[T]

    Permalink
    Definition Classes
    ImplicitsBase
  133. implicit def toRichPath(p: Path): RichPath

    Permalink
    Definition Classes
    Implicits
  134. implicit def toRichPattern(regex: Regex): RichRegex

    Permalink
    Definition Classes
    ImplicitsBase
  135. implicit def toRichPattern(pattern: Pattern): RichPattern

    Permalink
    Definition Classes
    ImplicitsBase
  136. implicit def toRichQueryParamsObject(obj: QueryParams.type): RichQueryParams.type

    Permalink
    Definition Classes
    Implicits
  137. implicit def toRichScalaDuration(duration: FiniteDuration): RichScalaDuration

    Permalink
    Definition Classes
    ImplicitsBase
  138. implicit def toRichSomeObject(some: Some.type): RichSomeObject

    Permalink
    Definition Classes
    ImplicitsBase
  139. implicit def toRichString(s: String): RichString

    Permalink
    Definition Classes
    ImplicitsBase
  140. implicit def toRichStringOption(opt: Option[String]): RichStringOption

    Permalink
    Definition Classes
    ImplicitsBase
  141. implicit def toRichTraversableOnce[A, COL](col: COL)(implicit ev: (COL) ⇒ TraversableOnce[A]): RichTraversableOnce[A, COL]

    Permalink
    Definition Classes
    ImplicitsBase
  142. implicit def toRichTry[T](t: Try[T]): RichTry[T]

    Permalink
    Definition Classes
    ImplicitsBase
  143. implicit def toRichURI(uri: URI): RichURI

    Permalink
    Definition Classes
    ImplicitsBase
  144. implicit def toRichURL(url: URL): RichURL

    Permalink
    Definition Classes
    Implicits
  145. implicit def toTypeSafeEquals[L](left: L): TypeSafeEquals[L]

    Permalink
    Definition Classes
    TypeSafeEqualsOps

Inherited from Implicits

Inherited from ImplicitsBase

Inherited from ImplicitsCollectionCompat

Inherited from PlatformCompat

Inherited from TypeSafeEqualsOps

Inherited from AnyRefNullCheckOps

Inherited from OrderingImplicits

Inherited from AnyRef

Inherited from Any

Ungrouped