AnotherVO是一种自定义的值对象,可能与POI无关。需要查看代码以确认是否来自于POI。下面是一个示例:
//示例代码 public class AnotherVO { private String name; private int age;
public AnotherVO(String name, int age) {
this.name = name;
this.age = age;
}
//getters and setters
}
在这个例子中,AnotherVO是一个仅包含name和age属性的简单值对象,并不依赖于POI或任何其他库。因此,需要进一步检查代码并查看POI是否与AnotherVO有关联。