Class FlowSchemaCondition

  • All Implemented Interfaces:
    com.marcnuri.yakc.model.Model

    public class FlowSchemaCondition
    extends java.lang.Object
    implements com.marcnuri.yakc.model.Model
    FlowSchemaCondition describes conditions for a FlowSchema.
    • Constructor Summary

      Constructors 
      Constructor Description
      FlowSchemaCondition()  
      FlowSchemaCondition​(java.time.OffsetDateTime lastTransitionTime, java.lang.String message, java.lang.String reason, java.lang.String status, java.lang.String type)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static FlowSchemaCondition.Builder builder()  
      protected boolean canEqual​(java.lang.Object other)  
      boolean equals​(java.lang.Object o)  
      java.time.OffsetDateTime getLastTransitionTime()  
      java.lang.String getMessage()
      `message` is a human-readable message indicating details about last transition.
      java.lang.String getReason()
      `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      java.lang.String getStatus()
      `status` is the status of the condition.
      java.lang.String getType()
      `type` is the type of the condition.
      int hashCode()  
      void setLastTransitionTime​(java.time.OffsetDateTime lastTransitionTime)  
      void setMessage​(java.lang.String message)
      `message` is a human-readable message indicating details about last transition.
      void setReason​(java.lang.String reason)
      `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      void setStatus​(java.lang.String status)
      `status` is the status of the condition.
      void setType​(java.lang.String type)
      `type` is the type of the condition.
      FlowSchemaCondition.Builder toBuilder()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • FlowSchemaCondition

        public FlowSchemaCondition​(java.time.OffsetDateTime lastTransitionTime,
                                   java.lang.String message,
                                   java.lang.String reason,
                                   java.lang.String status,
                                   java.lang.String type)
      • FlowSchemaCondition

        public FlowSchemaCondition()
    • Method Detail

      • getLastTransitionTime

        public java.time.OffsetDateTime getLastTransitionTime()
      • getMessage

        public java.lang.String getMessage()
        `message` is a human-readable message indicating details about last transition.
      • getReason

        public java.lang.String getReason()
        `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      • getStatus

        public java.lang.String getStatus()
        `status` is the status of the condition. Can be True, False, Unknown. Required.
      • getType

        public java.lang.String getType()
        `type` is the type of the condition. Required.
      • setLastTransitionTime

        public void setLastTransitionTime​(java.time.OffsetDateTime lastTransitionTime)
      • setMessage

        public void setMessage​(java.lang.String message)
        `message` is a human-readable message indicating details about last transition.
      • setReason

        public void setReason​(java.lang.String reason)
        `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      • setStatus

        public void setStatus​(java.lang.String status)
        `status` is the status of the condition. Can be True, False, Unknown. Required.
      • setType

        public void setType​(java.lang.String type)
        `type` is the type of the condition. Required.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • canEqual

        protected boolean canEqual​(java.lang.Object other)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object