in java/cose/CborUtil.java [74:80]
public static Array asArray(DataItem dataItem) throws CborException {
if (dataItem.getMajorType() != MajorType.ARRAY) {
throw new CborException(
String.format("Expected an array, got %s", dataItem.getMajorType().name()));
}
return (Array) dataItem;
}