Uses of Class
net.sf.staccatocommons.lang.Option

Packages that use Option
net.sf.staccatocommons.lang This package contains Options, SoftExceptions and null handling utilities. 
 

Uses of Option in net.sf.staccatocommons.lang
 

Subclasses of Option in net.sf.staccatocommons.lang
 class None<T>
          An undefined Option, that it, and option that does not have a value
 class Some<T>
          A defined Option, that is, an option that holds a value.
 

Methods in net.sf.staccatocommons.lang that return Option
 Option<A> Option.filter(net.sf.staccatocommons.defs.Evaluable<? super A> predicate)
          Answers this option if defined and the given predicate evaluates to true.
<T2> Option<T2>
Option.map(net.sf.staccatocommons.defs.Applicable<? super A,? extends T2> function)
          Applies the given function to the Option's value and wraps it into an Option, if defined.
static
<T> Option<T>
Option.nullToNone(T value)
          Creates an option (defined or not), mapping null values to undefined options, and non nulls to defined option.
 Option<T> None.skip(T element)
           
 Option<T> Some.skip(T element)
           
 



Copyright © 2010-2012 Staccatocommons. All Rights Reserved.