@@ -159,6 +159,8 @@ public static EntryPointCommandData entryPoint(@Nonnull String name, @Nonnull St
159
159
* Parses the provided serialization back into an CommandData instance.
160
160
* <br>This is the reverse function for {@link CommandData#toData()}.
161
161
*
162
+ * <p><b>Note:</b> This does not take into account {@link #entryPoint(String, String) entry point commands}.
163
+ *
162
164
* @param array
163
165
* Array of serialized {@link DataObject} representing the commands
164
166
*
@@ -171,6 +173,7 @@ public static EntryPointCommandData entryPoint(@Nonnull String name, @Nonnull St
171
173
*
172
174
* @see CommandData#fromData(DataObject)
173
175
* @see SlashCommandData#fromData(DataObject)
176
+ * @see EntryPointCommandData#fromData(DataObject)
174
177
*/
175
178
@ Nonnull
176
179
public static List <CommandData > fromList (@ Nonnull DataArray array )
@@ -185,6 +188,8 @@ public static List<CommandData> fromList(@Nonnull DataArray array)
185
188
* Parses the provided serialization back into an CommandData instance.
186
189
* <br>This is the reverse function for {@link CommandData#toData()}.
187
190
*
191
+ * <p><b>Note:</b> This does not take into account {@link #entryPoint(String, String) entry point commands}.
192
+ *
188
193
* @param collection
189
194
* Collection of serialized {@link DataObject} representing the commands
190
195
*
@@ -197,6 +202,7 @@ public static List<CommandData> fromList(@Nonnull DataArray array)
197
202
*
198
203
* @see CommandData#fromData(DataObject)
199
204
* @see SlashCommandData#fromData(DataObject)
205
+ * @see EntryPointCommandData#fromData(DataObject)
200
206
*/
201
207
@ Nonnull
202
208
public static List <CommandData > fromList (@ Nonnull Collection <? extends DataObject > collection )
0 commit comments