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

io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta.Labels Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
package io.k8s.apimachinery.pkg.apis.meta.v1.objectmeta;

import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.LinkedHashMap;

@SuppressWarnings("serial")
public class Labels extends LinkedHashMap {
  public Labels kv(String key, String value) {
    put(key, value);
    return this;
  }

  public static Labels labels() {
    return new Labels();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy