Class Employee

java.lang.Object
com_github_leetcode.Employee

public class Employee extends java.lang.Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
    It’s the unique id of each node; unique id of this employee
    int
    the importance value of this employee
    java.util.List<java.lang.Integer>
    the id of direct subordinates
  • Constructor Summary

    Constructors
    Constructor
    Description
    Employee(int id, int importance, java.util.List<java.lang.Integer> subordinates)
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • id

      public int id
      It’s the unique id of each node; unique id of this employee
    • importance

      public int importance
      the importance value of this employee
    • subordinates

      public java.util.List<java.lang.Integer> subordinates
      the id of direct subordinates
  • Constructor Details

    • Employee

      public Employee(int id, int importance, java.util.List<java.lang.Integer> subordinates)