We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82999ea commit da8370bCopy full SHA for da8370b
README.md
@@ -127,6 +127,16 @@ String datafileContent = "..." // load your datafile content
127
Featurevisor f = Featurevisor.createInstance(datafileContent);
128
```
129
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
140
## Evaluation types
141
142
We can evaluate 3 types of values against a particular [feature](https://featurevisor.com/docs/features/):
0 commit comments