The MiniZinc site (https://www.minizinc.org/doc-2.5.5/en/solvers.html#indicator-constraints) states that the MIP SCIP solver supports indicator constraints.
I have found the MPIndicatorConstraint documentation at http://google.github.io/or-tools/javadoc/com/google/ortools/linearsolver/MPIndicatorConstraint.html, but with no examples associated with it.
The C++ documentation also informs of a MPSolverInterface which has an AddIndicatorConstraint method, for which I have found no parallel in the Java documentation (https://developers.google.com/optimization/reference/linear_solver/linear_solver/MPSolverInterface?hl=en)
Some examples for CP models are available at https://github.com/google/or-tools/blob/master/ortools/sat/doc/channeling.md#java-code but I could not find any analogous application associated with MIP.
Have any examples been documented? If not, would it be possible to share one on this thread?