public abstract static class Cell.Function extends Object
Modifier and Type | Field and Description |
---|---|
static Cell.Function |
IDENTITY |
Constructor and Description |
---|
Function() |
Modifier and Type | Method and Description |
---|---|
abstract Collection<String> |
apply(Character character,
Integer width,
Integer height,
Collection<String> cell) |
abstract Collection<String> |
apply(Collection<String> cell) |
abstract Collection<String> |
apply(Integer width,
Integer height,
Collection<String> cell) |
static Cell.Function |
from(Function f) |
static Cell.Function |
from(FunctionWithChar f) |
static Cell.Function |
from(FunctionWithCharAndHeight f) |
static Cell.Function |
from(FunctionWithCharAndWidth f) |
static Cell.Function |
from(FunctionWithCharAndWidthAndHeight f) |
static Cell.Function |
from(FunctionWithHeight f) |
static Cell.Function |
from(FunctionWithWidth f) |
static Cell.Function |
from(FunctionWithWidthAndHeight f) |
abstract Cell.Function |
withChar(char character) |
abstract Cell.Function |
withHeight(int height) |
abstract Cell.Function |
withWidth(int width) |
public static final Cell.Function IDENTITY
public abstract Collection<String> apply(Collection<String> cell)
public abstract Collection<String> apply(Integer width, Integer height, Collection<String> cell)
public abstract Collection<String> apply(Character character, Integer width, Integer height, Collection<String> cell)
public abstract Cell.Function withChar(char character)
public abstract Cell.Function withWidth(int width)
public abstract Cell.Function withHeight(int height)
public static Cell.Function from(Function f)
public static Cell.Function from(FunctionWithChar f)
public static Cell.Function from(FunctionWithWidth f)
public static Cell.Function from(FunctionWithHeight f)
public static Cell.Function from(FunctionWithCharAndWidth f)
public static Cell.Function from(FunctionWithCharAndHeight f)
public static Cell.Function from(FunctionWithWidthAndHeight f)
public static Cell.Function from(FunctionWithCharAndWidthAndHeight f)
Copyright © 2017 JBoss by Red Hat. All rights reserved.