public interface PojoPropertyAccessorModes
PojoPropertyAccessorMode
s to have them in one place and make the API easier
to use.mode
and accessor
you need to reference it explicitly.Modifier and Type | Field and Description |
---|---|
static PojoPropertyAccessorOneArgMode |
ADD
Mode to
add an element to a container property (e.g. |
static PojoPropertyAccessorNonArgMode |
GET
Mode to read a regular property (e.g.
|
static PojoPropertyAccessorIndexedNonArgMode |
GET_INDEXED
Mode to read an indexed property (e.g.
|
static PojoPropertyAccessorOneArgMode |
GET_MAPPED
|
static PojoPropertyAccessorNonArgMode |
GET_SIZE
Mode to read the size of a container property (e.g.
|
static PojoPropertyAccessorOneArgMode |
REMOVE
Mode to
remove an element from a container property (e.g. |
static PojoPropertyAccessorOneArgMode |
SET
Mode to write a regular property (e.g.
|
static PojoPropertyAccessorIndexedOneArgMode |
SET_INDEXED
Mode to write an indexed property (e.g.
|
static PojoPropertyAccessorTwoArgMode |
SET_MAPPED
|
static final PojoPropertyAccessorNonArgMode GET
getFoo()
).static final PojoPropertyAccessorOneArgMode SET
setFoo(Foo)
).static final PojoPropertyAccessorNonArgMode GET_SIZE
getFooLength()
or getFoos().size()
).static final PojoPropertyAccessorOneArgMode ADD
add
an element to a container property (e.g. addFoo(Foo)
).static final PojoPropertyAccessorOneArgMode REMOVE
remove
an element from a container property (e.g.
removeFoo(Foo)
).static final PojoPropertyAccessorIndexedNonArgMode GET_INDEXED
getFoo(int)
).static final PojoPropertyAccessorIndexedOneArgMode SET_INDEXED
getFoo(int)
).static final PojoPropertyAccessorOneArgMode GET_MAPPED
static final PojoPropertyAccessorTwoArgMode SET_MAPPED
Copyright © 2001–2016 mmm-Team. All rights reserved.