Skip to content

Commit 99188ec

Browse files
committed
polish
1 parent e570e23 commit 99188ec

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

client/src/main/java/io/split/client/SplitClient.java

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ public interface SplitClient {
491491
*
492492
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
493493
* @param featureFlagName the name of the feature flag we want to evaluate. MUST NOT be null.
494-
* @param evaluationOptions additional data to attach to the impression.
494+
* @param evaluationOptions additional data for evaluation.
495495
* @return the evaluated treatment, the default treatment of this feature flag, or 'control'.
496496
*/
497497
String getTreatment(String key, String featureFlagName, EvaluationOptions evaluationOptions);
@@ -509,7 +509,7 @@ public interface SplitClient {
509509
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
510510
* @param featureFlagName the name of the feature flag we want to evaluate. MUST NOT be null.
511511
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
512-
* @param evaluationOptions additional data to attach to the impression.
512+
* @param evaluationOptions additional data for evaluation
513513
* @return the evaluated treatment, the default treatment of this feature flag, or 'control'.
514514
*/
515515
String getTreatment(String key, String featureFlagName, Map<String, Object> attributes, EvaluationOptions evaluationOptions);
@@ -542,7 +542,7 @@ public interface SplitClient {
542542
* @param key the matching and bucketing keys. MUST NOT be null.
543543
* @param featureFlagName the name of the feature flag we want to evaluate. MUST NOT be null.
544544
* @param attributes of the entity (user, account etc.) to use in evaluation. Can be null or empty.
545-
* @param evaluationOptions additional data to attach to the impression.
545+
* @param evaluationOptions additional data for evaluation
546546
*
547547
* @return the evaluated treatment, the default treatment of this feature flag, or 'control'.
548548
*/
@@ -576,7 +576,7 @@ public interface SplitClient {
576576
*
577577
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
578578
* @param featureFlagNames the names of the feature flags we want to evaluate. MUST NOT be null.
579-
* @param evaluationOptions additional data to attach to the impression.
579+
* @param evaluationOptions additional data for evaluation
580580
* @return for each feature flag the evaluated treatment, the default treatment for each feature flag, or 'control'.
581581
*/
582582
Map<String, String> getTreatments(String key, List<String> featureFlagNames, EvaluationOptions evaluationOptions);
@@ -594,7 +594,7 @@ public interface SplitClient {
594594
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
595595
* @param featureFlagNames the names of the feature flags we want to evaluate. MUST NOT be null.
596596
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
597-
* @param evaluationOptions additional data to attach to the impression.
597+
* @param evaluationOptions additional data for evaluation
598598
* @return the evaluated treatment, the default treatment of this feature flag, or 'control'.
599599
*/
600600
Map<String, String> getTreatments(String key, List<String> featureFlagNames, Map<String, Object> attributes, EvaluationOptions evaluationOptions);
@@ -627,7 +627,7 @@ public interface SplitClient {
627627
* @param key the matching and bucketing keys. MUST NOT be null.
628628
* @param featureFlagNames the names of the feature flags we want to evaluate. MUST NOT be null.
629629
* @param attributes of the entity (user, account etc.) to use in evaluation. Can be null or empty.
630-
* @param evaluationOptions additional data to attach to the impression.
630+
* @param evaluationOptions additional data for evaluation
631631
*
632632
* @return for each feature flag the evaluated treatment, the default treatment of the feature flag, or 'control'.
633633
*/
@@ -644,7 +644,7 @@ public interface SplitClient {
644644
*
645645
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
646646
* @param featureFlagName the name of the feature flag we want to evaluate. MUST NOT be null.
647-
* @param evaluationOptions additional data to attach to the impression.
647+
* @param evaluationOptions additional data for evaluation
648648
* @return SplitResult containing the evaluated treatment (the default treatment of this feature flag, or 'control') and
649649
* a configuration associated to this treatment if set.
650650
*/
@@ -657,7 +657,7 @@ public interface SplitClient {
657657
* @param key the matching and bucketing keys. MUST NOT be null.
658658
* @param featureFlagName the name of the feature flag we want to evaluate. MUST NOT be null.
659659
* @param attributes of the entity (user, account etc.) to use in evaluation. Can be null or empty.
660-
* @param evaluationOptions additional data to attach to the impression.
660+
* @param evaluationOptions additional data for evaluation
661661
*
662662
* @return SplitResult containing the evaluated treatment (the default treatment of this feature flag, or 'control') and
663663
* a configuration associated to this treatment if set.
@@ -676,7 +676,7 @@ public interface SplitClient {
676676
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
677677
* @param featureFlagName the name of the feature flag we want to evaluate. MUST NOT be null.
678678
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
679-
* @param evaluationOptions additional data to attach to the impression.
679+
* @param evaluationOptions additional data for evaluation
680680
* @return SplitResult containing the evaluated treatment (the default treatment of this feature flag, or 'control') and
681681
* a configuration associated to this treatment if set.
682682
*/
@@ -694,7 +694,7 @@ public interface SplitClient {
694694
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
695695
* @param featureFlagNames the names of the feature flags we want to evaluate. MUST NOT be null.
696696
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
697-
* @param evaluationOptions additional data to attach to the impression.
697+
* @param evaluationOptions additional data for evaluation
698698
* @return for each feature flag a SplitResult containing the evaluated treatment (the default treatment of this feature flag, or 'control') and
699699
* a configuration associated to this treatment if set.
700700
*/
@@ -712,7 +712,7 @@ Map<String, SplitResult> getTreatmentsWithConfig(String key, List<String> featur
712712
*
713713
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null.
714714
* @param featureFlagNames the names of the feature flags we want to evaluate. MUST NOT be null.
715-
* @param evaluationOptions additional data to attach to the impression.
715+
* @param evaluationOptions additional data for evaluation
716716
* @return Map<String, SplitResult> containing for each feature flag the evaluated treatment (the default treatment of
717717
* this feature flag, or 'control') and a configuration associated to this treatment if set.
718718
*/
@@ -730,7 +730,7 @@ Map<String, SplitResult> getTreatmentsWithConfig(String key, List<String> featur
730730
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
731731
* @param flagSet the Flag Set name that you want to evaluate. MUST not be null or empty.
732732
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
733-
* @param evaluationOptions additional data to attach to the impression.
733+
* @param evaluationOptions additional data for evaluation
734734
* @return for each feature flag the evaluated treatment, the default treatment of this feature flag, or 'control'.
735735
*/
736736
Map<String, String> getTreatmentsByFlagSet(String key, String flagSet, Map<String, Object> attributes, EvaluationOptions evaluationOptions);
@@ -746,7 +746,7 @@ Map<String, SplitResult> getTreatmentsWithConfig(String key, List<String> featur
746746
*
747747
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
748748
* @param flagSets the names of Flag Sets that you want to evaluate. MUST not be null or empty.
749-
* @param evaluationOptions additional data to attach to the impression.
749+
* @param evaluationOptions additional data for evaluation
750750
* @return for each feature flag the evaluated treatment, the default treatment of this feature flag, or 'control'.
751751
*/
752752
Map<String, String> getTreatmentsByFlagSets(String key, List<String> flagSets, EvaluationOptions evaluationOptions);
@@ -763,7 +763,7 @@ Map<String, SplitResult> getTreatmentsWithConfig(String key, List<String> featur
763763
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
764764
* @param flagSets the names of Flag Sets that you want to evaluate. MUST not be null or empty.
765765
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
766-
* @param evaluationOptions additional data to attach to the impression.
766+
* @param evaluationOptions additional data for evaluation
767767
* @return for each feature flag the evaluated treatment, the default treatment of this feature flag, or 'control'.
768768
*/
769769
Map<String, String> getTreatmentsByFlagSets(String key, List<String> flagSets, Map<String, Object> attributes,
@@ -780,7 +780,7 @@ Map<String, String> getTreatmentsByFlagSets(String key, List<String> flagSets, M
780780
*
781781
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
782782
* @param flagSet the Flag Set name that you want to evaluate. MUST not be null or empty.
783-
* @param evaluationOptions additional data to attach to the impression.
783+
* @param evaluationOptions additional data for evaluation
784784
* @return for each feature flag the evaluated treatment (the default treatment of this feature flag, or 'control') and a configuration
785785
* associated to this treatment if set.
786786
*/
@@ -797,7 +797,7 @@ Map<String, String> getTreatmentsByFlagSets(String key, List<String> flagSets, M
797797
*
798798
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
799799
* @param flagSets the names of Flag Sets that you want to evaluate. MUST not be null or empty.
800-
* @param evaluationOptions additional data to attach to the impression.
800+
* @param evaluationOptions additional data for evaluation
801801
* @return for each feature flag the evaluated treatment (the default treatment of this feature flag, or 'control') and a configuration
802802
* associated to this treatment if set.
803803
*/
@@ -815,7 +815,7 @@ Map<String, String> getTreatmentsByFlagSets(String key, List<String> flagSets, M
815815
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
816816
* @param flagSets the names of Flag Sets that you want to evaluate. MUST not be null or empty.
817817
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
818-
* @param evaluationOptions additional data to attach to the impression.
818+
* @param evaluationOptions additional data for evaluation
819819
* @return for each feature flag the evaluated treatment (the default treatment of this feature flag, or 'control') and a configuration
820820
* associated to this treatment if set.
821821
*/
@@ -833,7 +833,7 @@ Map<String, SplitResult> getTreatmentsWithConfigByFlagSets(String key, List<Stri
833833
*
834834
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
835835
* @param flagSet the Flag Set name that you want to evaluate. MUST not be null or empty.
836-
* @param evaluationOptions additional data to attach to the impression.
836+
* @param evaluationOptions additional data for evaluation
837837
* @return for each feature flag the evaluated treatment, the default treatment of this feature flag, or 'control'.
838838
*/
839839
Map<String, String> getTreatmentsByFlagSet(String key, String flagSet, EvaluationOptions evaluationOptions);
@@ -845,7 +845,7 @@ Map<String, SplitResult> getTreatmentsWithConfigByFlagSets(String key, List<Stri
845845
* @param key the matching and bucketing keys. MUST NOT be null.
846846
* @param featureFlagNames the names of the feature flags we want to evaluate. MUST NOT be null.
847847
* @param attributes of the entity (user, account etc.) to use in evaluation. Can be null or empty.
848-
* @param evaluationOptions additional data to attach to the impression.
848+
* @param evaluationOptions additional data for evaluation
849849
*
850850
* @return for each feature flag a SplitResult containing the evaluated treatment (the default treatment of this feature flag, or 'control') and
851851
* a configuration associated to this treatment if set.
@@ -865,7 +865,7 @@ Map<String, SplitResult> getTreatmentsWithConfig(Key key, List<String> featureFl
865865
* @param key a unique key of your customer (e.g. user_id, user_email, account_id, etc.) MUST not be null or empty.
866866
* @param flagSet the Flag Set name that you want to evaluate. MUST not be null or empty.
867867
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
868-
* @param evaluationOptions additional data to attach to the impression.
868+
* @param evaluationOptions additional data for evaluation
869869
* @return for each feature flag the evaluated treatment (the default treatment of this feature flag, or 'control') and a configuration
870870
* associated to this treatment if set.
871871
*/
@@ -884,7 +884,7 @@ Map<String, SplitResult> getTreatmentsWithConfigByFlagSet(String key, String fla
884884
* @param key the matching and bucketing keys. MUST not be null or empty.
885885
* @param flagSet the Flag Set name that you want to evaluate. MUST not be null or empty.
886886
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
887-
* @param evaluationOptions additional data to attach to the impression.
887+
* @param evaluationOptions additional data for evaluation
888888
* @return for each feature flag the evaluated treatment, the default treatment of this feature flag, or 'control'.
889889
*/
890890
Map<String, String> getTreatmentsByFlagSet(Key key, String flagSet, Map<String, Object> attributes, EvaluationOptions evaluationOptions);
@@ -901,7 +901,7 @@ Map<String, SplitResult> getTreatmentsWithConfigByFlagSet(String key, String fla
901901
* @param key the matching and bucketing keys. MUST not be null or empty.
902902
* @param flagSets the names of Flag Sets that you want to evaluate. MUST not be null or empty.
903903
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
904-
* @param evaluationOptions additional data to attach to the impression.
904+
* @param evaluationOptions additional data for evaluation
905905
* @return for each feature flag the evaluated treatment, the default treatment of this feature flag, or 'control'.
906906
*/
907907
Map<String, String> getTreatmentsByFlagSets(Key key, List<String> flagSets, Map<String, Object> attributes,
@@ -919,7 +919,7 @@ Map<String, String> getTreatmentsByFlagSets(Key key, List<String> flagSets, Map<
919919
* @param key the matching and bucketing keys. MUST not be null or empty.
920920
* @param flagSet the Flag Set name that you want to evaluate. MUST not be null or empty.
921921
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
922-
* @param evaluationOptions additional data to attach to the impression.
922+
* @param evaluationOptions additional data for evaluation
923923
* @return for each feature flag the evaluated treatment (the default treatment of this feature flag, or 'control') and a configuration
924924
* associated to this treatment if set.
925925
*/
@@ -938,7 +938,7 @@ Map<String, SplitResult> getTreatmentsWithConfigByFlagSet(Key key, String flagSe
938938
* @param key the matching and bucketing keys. MUST not be null or empty.
939939
* @param flagSets the names of Flag Sets that you want to evaluate. MUST not be null or empty.
940940
* @param attributes of the customer (user, account etc.) to use in evaluation. Can be null or empty.
941-
* @param evaluationOptions additional data to attach to the impression.
941+
* @param evaluationOptions additional data for evaluation
942942
* @return for each feature flag the evaluated treatment (the default treatment of this feature flag, or 'control') and a configuration
943943
* associated to this treatment if set.
944944
*/

0 commit comments

Comments
 (0)