Level

mill.contrib.flyway.ConsoleLog.Level
object Level extends Enumeration

Attributes

Source
ConsoleLog.scala
Graph
Supertypes
class Enumeration
trait Serializable
class Object
trait Matchable
class Any
Self type
Level.type

Members list

Type members

Inherited classlikes

protected class Val(i: Int, name: String | Null) extends Value, Serializable

A class implementing the scala.Enumeration.Value type. This class can be overridden to change the enumeration's naming and integer identification behaviour.

A class implementing the scala.Enumeration.Value type. This class can be overridden to change the enumeration's naming and integer identification behaviour.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
Supertypes
class Enumeration.this.Value
trait Serializable
trait Ordered[Enumeration.this.Value]
trait Comparable[Enumeration.this.Value]
class Object
trait Matchable
class Any
Show all
object ValueOrdering extends Ordering[Value]

An ordering by id for values of this set

An ordering by id for values of this set

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
Supertypes
trait Ordering[Enumeration.this.Value]
trait PartialOrdering[Enumeration.this.Value]
trait Equiv[Enumeration.this.Value]
trait Serializable
trait Comparator[Enumeration.this.Value]
class Object
trait Matchable
class Any
Show all
class ValueSet extends AbstractSet[Value], SortedSet[Value], SortedSetOps[Value, SortedSet, ValueSet], StrictOptimizedIterableOps[Value, Set, ValueSet], Serializable

A class for sets of values. Iterating through this set will yield values in increasing order of their ids.

A class for sets of values. Iterating through this set will yield values in increasing order of their ids.

Value parameters

nnIds

The set of ids of values (adjusted so that the lowest value does not fall below zero), organized as a BitSet.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
Supertypes
trait Serializable
trait StrictOptimizedIterableOps[Enumeration.this.Value, Set, Enumeration.this.ValueSet]
trait SortedSet[Enumeration.this.Value]
trait SortedSetOps[Enumeration.this.Value, SortedSet, Enumeration.this.ValueSet]
trait SortedSet[Enumeration.this.Value]
trait SortedSetFactoryDefaults[Enumeration.this.Value, SortedSet, Set]
trait SortedSetOps[Enumeration.this.Value, SortedSet, Enumeration.this.ValueSet]
trait SortedOps[Enumeration.this.Value, Enumeration.this.ValueSet]
class AbstractSet[Enumeration.this.Value]
trait Set[Enumeration.this.Value]
trait SetOps[Enumeration.this.Value, Set, Enumeration.this.ValueSet]
trait Iterable[Enumeration.this.Value]
class AbstractSet[Enumeration.this.Value]
trait Set[Enumeration.this.Value]
trait Equals
trait SetOps[Enumeration.this.Value, Set, Enumeration.this.ValueSet]
trait Pure
trait Enumeration.this.Value => Boolean
class AbstractIterable[Enumeration.this.Value]
trait Iterable[Enumeration.this.Value]
trait IterableFactoryDefaults[Enumeration.this.Value, Set]
trait IterableOps[Enumeration.this.Value, Set, Enumeration.this.ValueSet]
trait IterableOnceOps[Enumeration.this.Value, Set, Enumeration.this.ValueSet]
trait IterableOnce[Enumeration.this.Value]
class Object
trait Matchable
class Any
Show all
object ValueSet extends SpecificIterableFactory[Value, ValueSet]

A factory object for value sets

A factory object for value sets

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
Supertypes
trait SpecificIterableFactory[Enumeration.this.Value, Enumeration.this.ValueSet]
trait Factory[Enumeration.this.Value, Enumeration.this.ValueSet]
class Object
trait Matchable
class Any

Inherited and Abstract classlikes

abstract class Value extends Ordered[Value], Serializable

The type of the enumerated values.

The type of the enumerated values.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
Supertypes
trait Serializable
trait Ordered[Enumeration.this.Value]
trait Comparable[Enumeration.this.Value]
class Object
trait Matchable
class Any
Show all
Known subtypes
class Enumeration.this.Val

Types

type Level = Value

Attributes

Source
ConsoleLog.scala

Value members

Inherited methods

final protected def Value(i: Int, name: String | Null): Value

Creates a fresh value, part of this enumeration, called name and identified by the integer i.

Creates a fresh value, part of this enumeration, called name and identified by the integer i.

Value parameters

i

An integer that identifies this value at run-time. It must be unique amongst all values of the enumeration.

name

A human-readable name for that value.

Attributes

Returns

Fresh value with the provided identifier i and name name.

Inherited from:
Enumeration
Source
Enumeration.scala
final protected def Value(name: String | Null): Value

Creates a fresh value, part of this enumeration, called name.

Creates a fresh value, part of this enumeration, called name.

Value parameters

name

A human-readable name for that value.

Attributes

Returns

Fresh value called name.

Inherited from:
Enumeration
Source
Enumeration.scala
final protected def Value(i: Int): Value

Creates a fresh value, part of this enumeration, identified by the integer i.

Creates a fresh value, part of this enumeration, identified by the integer i.

Value parameters

i

An integer that identifies this value at run-time. It must be unique amongst all values of the enumeration.

Attributes

Returns

Fresh value identified by i.

Inherited from:
Enumeration
Source
Enumeration.scala
final protected def Value: Value

Creates a fresh value, part of this enumeration.

Creates a fresh value, part of this enumeration.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
final def apply(x: Int): Value

The value of this enumeration with given id x

The value of this enumeration with given id x

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
final def maxId: Int

The one higher than the highest integer amongst those used to identify values in this enumeration.

The one higher than the highest integer amongst those used to identify values in this enumeration.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
protected def readResolve(): AnyRef

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
override def toString(): String

The name of this enumeration.

The name of this enumeration.

Attributes

Definition Classes
Enumeration -> Any
Inherited from:
Enumeration
Source
Enumeration.scala

The values of this enumeration as a set.

The values of this enumeration as a set.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
final def withName(s: String): Value

Return a Value from this Enumeration whose name matches the argument s. The names are determined automatically via reflection.

Return a Value from this Enumeration whose name matches the argument s. The names are determined automatically via reflection.

Value parameters

s

an Enumeration name

Attributes

Returns

the Value of this Enumeration if its name matches s

Throws
NoSuchElementException

if no Value with a matching name is in this Enumeration

Inherited from:
Enumeration
Source
Enumeration.scala

Concrete fields

val DEBUG: Value

Attributes

Source
ConsoleLog.scala
val INFO: Value

Attributes

Source
ConsoleLog.scala
val WARN: Value

Attributes

Source
ConsoleLog.scala

Inherited fields

protected var nextId: Int

The integer to use to identify the next created value.

The integer to use to identify the next created value.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala
protected var nextName: Iterator[String]

The string to use to name the next created value.

The string to use to name the next created value.

Attributes

Inherited from:
Enumeration
Source
Enumeration.scala