All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.qdbp.staticize.parse.ExpItems Maven / Gradle / Ivy

There is a newer version: 3.5.18
Show newest version
package com.gitee.qdbp.staticize.parse;

import java.util.ArrayList;

/**
 * 表达式数组
* 如: home-${root.name}-list, 拆分为3组: [home-] [${root.name}] [-list] * * @author zhaohuihua * @version 20200930 */ public class ExpItems extends ArrayList { /** serialVersionUID **/ private static final long serialVersionUID = 1L; @Override public String toString() { StringBuilder buffer = new StringBuilder(); for (ExpItem item : this) { buffer.append(item.getContent()); } return buffer.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy