Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit dfb4a97

Browse files
committed
KGetterIgnore周りを追記
1 parent 8948e92 commit dfb4a97

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.ja.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,18 @@ class Foo(
563563
)
564564
```
565565

566+
#### マッピング時にフィールドを無視する
567+
何らかの理由でマッピング時にフィールドを無視したい場合、`KGetterIgnore`アノテーションを用いることができます。
568+
例えば、以下の`Src`クラスを入力した場合、`param1`フィールドは読み出し処理が行われません。
569+
570+
```kotlin
571+
data class Src(
572+
@KGetterIgnore
573+
val param1: Int,
574+
val param2: Int
575+
)
576+
```
577+
566578
## 引数のセットアップ
567579

568580
### 引数読み出しの対象

0 commit comments

Comments
 (0)