public boolean hasTag()

in juneau-petstore-api/src/main/java/org/apache/juneau/petstore/dto/Pet.java [218:224]


	public boolean hasTag(String...tags) {
		for (String tag : tags)
			for (String t : this.tags)
				if (t.equals(tag))
					return true;
		return false;
	}