Class Either<L,​R>

    • Constructor Detail

      • Either

        public Either()
    • Method Detail

      • isLeft

        public boolean isLeft()
      • getLeft

        public L getLeft()
      • isRight

        public boolean isRight()
      • getRight

        public R getRight()
      • left

        public static <L,​R> Either<L,​R> left​(L value)
      • right

        public static <L,​R> Either<L,​R> right​(R value)