Skip to content

Commit da8370b

Browse files
committed
updates
1 parent 82999ea commit da8370b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,16 @@ String datafileContent = "..." // load your datafile content
127127
Featurevisor f = Featurevisor.createInstance(datafileContent);
128128
```
129129

130+
or by constructing a `Featurevisor.Options` object:
131+
132+
```java
133+
Featurevisor f = Featurevisor.createInstance(new Featurevisor.Options()
134+
.datafile(datafileContent)
135+
);
136+
```
137+
138+
We will learn about several different options in the next sections.
139+
130140
## Evaluation types
131141

132142
We can evaluate 3 types of values against a particular [feature](https://featurevisor.com/docs/features/):

0 commit comments

Comments
 (0)