11package com .saicone .settings .type ;
22
3- import com .saicone .types .TypeParser ;
43import com .saicone .types .Types ;
54import com .saicone .types .AnyObject ;
65import org .jetbrains .annotations .NotNull ;
76
8- import java .util .Collection ;
97import java .util .List ;
108import java .util .UUID ;
119
@@ -45,7 +43,6 @@ default List<Object> asList() {
4543 * Convert this object into a list of strings.
4644 *
4745 * @see Types#STRING
48- * @see TypeParser#collection(Collection, Object)
4946 *
5047 * @return a list containing only values that was converted into strings.
5148 */
@@ -58,7 +55,6 @@ default List<String> asStringList() {
5855 * Convert this object into a list of characters.
5956 *
6057 * @see Types#CHAR
61- * @see TypeParser#collection(Collection, Object)
6258 *
6359 * @return a list containing only values that was converted into characters.
6460 */
@@ -71,7 +67,6 @@ default List<Character> asCharList() {
7167 * Convert this object into a list of booleans.
7268 *
7369 * @see Types#BOOLEAN
74- * @see TypeParser#collection(Collection, Object)
7570 *
7671 * @return a list containing only values that was converted into booleans.
7772 */
@@ -84,7 +79,6 @@ default List<Boolean> asBooleanList() {
8479 * Convert this object into a list of bytes.
8580 *
8681 * @see Types#BYTE
87- * @see TypeParser#collection(Collection, Object)
8882 *
8983 * @return a list containing only values that was converted into bytes.
9084 */
@@ -97,7 +91,6 @@ default List<Byte> asByteList() {
9791 * Convert this object into a list of shorts.
9892 *
9993 * @see Types#SHORT
100- * @see TypeParser#collection(Collection, Object)
10194 *
10295 * @return a list containing only values that was converted into shorts.
10396 */
@@ -110,7 +103,6 @@ default List<Short> asShortList() {
110103 * Convert this object into a list of integers.
111104 *
112105 * @see Types#INTEGER
113- * @see TypeParser#collection(Collection, Object)
114106 *
115107 * @return a list containing only values that was converted into integers.
116108 */
@@ -123,7 +115,6 @@ default List<Integer> asIntList() {
123115 * Convert this object into a list of floats.
124116 *
125117 * @see Types#FLOAT
126- * @see TypeParser#collection(Collection, Object)
127118 *
128119 * @return a list containing only values that was converted into floats.
129120 */
@@ -136,7 +127,6 @@ default List<Float> asFloatList() {
136127 * Convert this object into a list of longs.
137128 *
138129 * @see Types#LONG
139- * @see TypeParser#collection(Collection, Object)
140130 *
141131 * @return a list containing only values that was converted into longs.
142132 */
@@ -149,7 +139,6 @@ default List<Long> asLongList() {
149139 * Convert this object into a list of doubles.
150140 *
151141 * @see Types#DOUBLE
152- * @see TypeParser#collection(Collection, Object)
153142 *
154143 * @return a list containing only values that was converted into doubles.
155144 */
@@ -162,7 +151,6 @@ default List<Double> asDoubleList() {
162151 * Convert this object into a list of unique IDs.
163152 *
164153 * @see Types#UUID
165- * @see TypeParser#collection(Collection, Object)
166154 *
167155 * @return a list containing only values that was converted into unique IDs.
168156 */
0 commit comments